topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 2:26 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: DONE: Group files from within folders  (Read 69605 times)

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #75 on: January 22, 2011, 07:19 PM »
filebucket written up on freewaregenius today:
http://www.freewareg...nd-other-operations/

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #76 on: February 01, 2011, 07:49 PM »
found another filebucket writeup, this time on addictive tips.

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #77 on: February 02, 2011, 04:55 AM »
filebucket written up on freewaregenius today:
http://www.freewareg...nd-other-operations/
found another filebucket writeup, this time on addictive tips.

Cool.   :D  Thanks for the heads up, guys.

cubensos

  • Participant
  • Joined in 2011
  • *
  • Posts: 1
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #78 on: February 22, 2011, 09:40 AM »
hello!

i really like your tool.
but i miss one feature:
the ability to create folders in the bucket.
because, if you copy lots of single files, you could put them in a folder..

with best regards
cubensos

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #79 on: February 22, 2011, 04:39 PM »
Thanks for the feedback, cubensos, and welcome to the site.  As for creating folders in the bucket, I think this falls outside the design of File Bucket which is to collect files and folders destined for a single destination.

TehBotolSosro

  • Participant
  • Joined in 2013
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #80 on: September 22, 2013, 03:35 AM »
i just found the software, and its awesome,
but seem the software could not handle big file (more than 5gb each file)
as its not responding when i tried to copy a folder with big file inside them (the program hang, and progress bar stuck at zero)
i'm using win 8, i will tried with smaller size later...

hopefully u still update this program as i would like to request couple of feature if its possible
like drag drop from the tree to the bucket list, resizable window in bucket list, show folder size correctly (now it only show 0 size for folder)

thx

almr3k

  • Participant
  • Joined in 2014
  • *
  • default avatar
  • Posts: 1
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #81 on: April 18, 2014, 06:45 AM »
dear sir

file bucket is a good program

i am saving source file  links in a text file when ever i want to copy i import links from text file

if destination folder is not available i asks to create

good

in the same way if i rename source folder  and link from text file will become different
in such condition it is skipping the file it must give an error log if one of the source file is not available

thanks
mohan

lmoseley

  • Supporting Member
  • Joined in 2014
  • **
  • Posts: 1
    • View Profile
    • Donate to Member
Re: DONE: Group files from within folders
« Reply #82 on: June 05, 2014, 11:57 PM »
Although old, I see that this post is still getting activity, so I may as well join in.  As it happens, just this week I had to solve this very problem.  I decided on a quick and dirty solution, which I will share.

I keep a temporary directory that I use just for this.  The temp dir contains one file, WALK.BAT.  Whatever directories I want to process, I either COPY or MOVE them to this directory.  Then, double-click WALK.BAT.

WALK.BAT contains a single batch file command, which I split into multiple lines here for readability:

FOR /D %%X IN (*.*) DO (
    CD %%X
    MOVE *.* ..
    CD ..
    )

The /D tells the FOR statement to look only at directories, not files, and to process them one at a time.
*.* tells FOR to select all directories.
For each directory in the TEMP directory...
1. Change to that directory...
2. MOVE (or change to COPY) all files it finds there to the directory one level up, namely the TEMP dir that I am using
3. Change directory to the directory one level up, namely the TEMP dir
4. Repeat until done.

When moving, this takes only seconds to run, even for hundreds of source directories.

Enjoy...