sbrady Posted October 15, 2012 Share Posted October 15, 2012 I need to cycle through items in a main folder. If the today is 10-15-12..........and subfolder1 name is 10-15-12, then I would need to get the full name of the subfolder and copy that subfolder to a destination. Some items in the main folder would be files not folders so I would need to weed out the files and only concentrate on the folders. can anyone help me code this, thanks. Link to comment Share on other sites More sharing options...
JohnOne Posted October 15, 2012 Share Posted October 15, 2012 This is a relatively simple exercise. _FileListToArray() For...To...Next If...EndIf StringInStr() DirCopy() ^^help file^^ AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 thanks but I am still in the dark, can you help me fill in some blanks......where do I put in my master folder path Link to comment Share on other sites More sharing options...
JohnOne Posted October 15, 2012 Share Posted October 15, 2012 Post your code and indicate where the blanks are. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 I cant I dont know how.........I am such a newbie...........I have been on Applescript for 10 yrs. I need to get the result of the folder in the array. How do I do that. Link to comment Share on other sites More sharing options...
BrewManNH Posted October 15, 2012 Share Posted October 15, 2012 He already told you, _FileListToArray. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
guinness Posted October 15, 2012 Share Posted October 15, 2012 I cant I dont know how.........I am such a newbie...........I have been on Applescript for 10 yrs. I need to get the result of the folder in the array. How do I do that.Apply the same logic as when you learnt AppleScript, read the help file! UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
JohnOne Posted October 15, 2012 Share Posted October 15, 2012 Well you can start with the help file example for filelisttoarray, and change it to what you need. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 why is it so hard to just give me the code I need...........what good does it do to put _FileListToArray on the line.............then what............how do I get the value.........Apple forums make life so much easier. I'll try this flilisttoarray thing. Thanks all. Link to comment Share on other sites More sharing options...
BrewManNH Posted October 15, 2012 Share Posted October 15, 2012 Apple forums give out code without any effort being done on the part of the person asking? They must love typing the same thing over and over again. There's a help file for a reason, you've been given the start of the commands to use, all you need to do is find out how they work to do what you want. Make the effort. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 why do think that I havent already put in hours and hours into trying 20 different times and I still cant get it to work. I go to the forums for help not a kick in the nuts. Link to comment Share on other sites More sharing options...
bogQ Posted October 15, 2012 Share Posted October 15, 2012 (edited) sbradywhat BrewManNH is saying is, show us the code you have done so far, so that we can help you and direct or guide you, if you don't post code we can't say what's wrong with the script and put some comments about what you don't understand in order to help you. Edited October 15, 2012 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost. Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 $folder_path = "10.10.44.17Incoming Projects DAW1PromosOpen PM" #include <file.au3> #include <array.au3> $folders = _FileListToArray($folder_path) #cs For...To...Next If...EndIf StringInStr() DirCopy() #ce Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted October 15, 2012 Moderators Share Posted October 15, 2012 (edited) You're getting there. So now look up _ArrayDisplay in the help file to show you what you have in your $folders array. Then, look at StringinStr() to narrow the search, as has been suggested. Something like this: #include <file.au3> #include <array.au3> $folder_path = "C:Users" $folders = _FileListToArray($folder_path) _ArrayDisplay($folders) For $folder in $folders If StringInStr(<put your parameters here>) Then DirCopy(<source path>, <destination path>, [flag]) EndIf Next Edited October 15, 2012 by JLogan3o13 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 ahhhhh........thats what I needed.......the Applescript way is this. repeat with a_folder in the_master folder set the_name to name of a_folder if a_name contains "123" then create folder end if end repeat Link to comment Share on other sites More sharing options...
BrewManNH Posted October 15, 2012 Share Posted October 15, 2012 Don't use "For $folder in $folders" with _FileListToArray, because the first item in the array is the count of found items, which will cause problems when copying. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
sbrady Posted October 15, 2012 Author Share Posted October 15, 2012 JLogan you are the bomb, what I need to do is: 1. repeat with every folder, 2. get the folder name, 3. create a folder at a destination, 4. give that new folder the same name, 5. then copy the directory to the newly created folder does all that make sense. Link to comment Share on other sites More sharing options...
JohnOne Posted October 15, 2012 Share Posted October 15, 2012 Yes, it makes perfect sense. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted October 15, 2012 Moderators Share Posted October 15, 2012 (edited) Don't use "For $folder in $folders" with _FileListToArray, because the first item in the array is the count of found items, which will cause problems when copying.Good point, BrewManNH. $element or some other var name would be better; wasn't thinking about that when I typed it out Edited October 15, 2012 by JLogan3o13 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
BrewManNH Posted October 15, 2012 Share Posted October 15, 2012 It's not the name of the variable you're using that's at issue, it's the fact that using For...In...Next when using _FileListToArray is problematical, because the first element in the array is the count of items found. You should use For $folder = 1 to $Folder[0]...Next this way you don't try to copy a folder that doesn't exist. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now