batch file - .bat coding or some app maybe? -
how can organize directories automatically?, have "downloads" folder, contains lots of different info, example, work related info, tv-shows, movies, etc, software, etc.
how can automatically, maybe using .bat execution, not sure, check example name of files, or type, , put them in right subfolders?.
thanks!.
you can use move command move files. can use wildcards in it.
so write batch script looks this:
cd c:\users\you\downloads rem excel sheets work. move *.xls work rem reports work. move report*.pdf work\reports rem pron , other viewing material ;) move *.mp4 private you run script automatically making scheduled job. note script changes right directory first , moves items relative subdirectory. means directories work, work\reports , private must exist in downloads directory.
of course can expand script make check , create directories well, or can specify different paths if want move files out of downloads directory.
basically, try on command line , try generalize steps script.
Comments
Post a Comment