Jump to content

Command to Get Folder tree to an array


Recommended Posts

I have data to backup (Straight copy, no compression required) that exceeds the size of a DVD disk.

I would like to automate splitting the data into several chunks of 4.2GB.

I cannot find a command to list the folder(s) tree, that I could write the folder tree info to an array.

Can anyone give me some ideas on how to do this?

------------------------------------------------------

My thinking

My idea is to write folder tree, plus files, plus file size to an array.

Sort array on file size, largest to smallest.

Compare file size to available space.

write largest size files first and see if I am able to write rest of folder contents in one chunk, else split to second chunk.

Link to comment
Share on other sites

  • Moderators

Enriched,

First, welcome to the AutoIt forums.

Search the forum for recursive file search scripts - there are lots of them about (including some of mine... >_< ). That will get you a list of files. Then you will need to use FileGetSize to find out their sizes, and _ArraySort to get them in the order you want.

You may have to do some work to get a sorted folder tree - it took me a long time to get as close as I have with my current version.

Try coding something yourself to begin and come back if you run into problems - you know where we are and we always prefer it when people have at least made some attempt at it first!

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Enriched,

First, welcome to the AutoIt forums.

Search the forum for recursive file search scripts - there are lots of them about (including some of mine... >_< ). That will get you a list of files. Then you will need to use FileGetSize to find out their sizes, and _ArraySort to get them in the order you want.

You may have to do some work to get a sorted folder tree - it took me a long time to get as close as I have with my current version.

Try coding something yourself to begin and come back if you run into problems - you know where we are and we always prefer it when people have at least made some attempt at it first!

M23

Hi Melba23,

Thanks, that sent me off in the correct direction.

I found your scripts, and I also found some PHP scripts with a Google search.

Should be able to sort the rest out.

Thanks and regards

(& more) Enriched :(

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...