-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File::Find fails due to chdir() limit on win32 #10504
Comments
From Ben.Golding@synopsys.comCreated by bgolding@synopsys.comErrors like the following Can't cd to C:\Overnight/Slimer/_OLD/Fri_10_Mar_2006_3.17.03/MyInstallations/Platforms/VPTAVOR/Libraries/ZYLONITE_BASEBOARD/1.0/PROCESSOR_CARD/1.0/TAVOR_P_SOC/1.0/XScale_SS/1.0/Peripherals/PWR_CLK_Decode/1.0/Source/codebase/Release../../../../../../../../../../../../../../.. at C:/Perl/lib/File/Find.pm line 929. can occur when using File::Find on Windows, if scanning a deep tree of subdirectories. ActiveState isolated the core problem: The problem is with the chdir() implementation on Windows. The function fails #!perl It's not clear to me whether chdir() on Windows should be fixed, File::Find should be modified to work around, or both. This bug is killing File::Find for me in some real-world use cases. Perl Info
|
From @avarDoes no_chdir => 1 work as a workaround? |
The RT System itself - Status changed from 'new' to 'open' |
From justincase@yopmail.comOn Thu Jul 22 05:32:01 2010, avarab@gmail.com wrote:
Using no_chdir => 1 worked for me when I encountered this problem today Looks like ActiveState identified this problem in 2006. |
Migrated from rt.perl.org#76652 (status was 'open')
Searchable as RT76652$
The text was updated successfully, but these errors were encountered: