Displaying 1 result from an estimated 1 matches for "base_file_nam".
Did you mean:
base_file_name
2009 Jun 18
3
Possible Bug or limitation in Cygwin 1.7 and Rsync and file number limit
...where over 6,000 in a single directory. To help sort this out, I whipped up the following perl code that creates 9,000 dummy files and puts them in a c:\temp directory. Code is as follows if anyone would like to try and reproduce this:
my $path="c:/temp/";
my $number_of_files=9000;
my $base_file_name="file";
my $count=1;
my $file_name = $path . $base_file_name . $count;
while ($count <= $number_of_files) {
open FILE, ">$file_name" or die $!;
$count++;
$file_name = $path . $base_file_name . $count;
print FILE "1";
close(FILE);
}
For those familiar...