8
votes
10answers
4k views
How to rename all folders and files to lowercase on Linux?
I have to rename a complete folder tree recursively so that no uppercase letter appears anywhere (it's C++ sourcecode, but that shouldn't matter). Bonus points for ignoring CVS and SVN control …
3
votes
1answer
90 views
Ensure a user-defined path is safe in PHP
I am implementing a simple directory listing script in PHP.
I want to ensure that the passed path is safe before opening directory handles and echoing the results willy-nilly.
$f = $_GET["f"];
if(! …
2
votes
5answers
279 views
Preventing directory traversal with web-facing application - are regular expressions bullet-proof?
I am in a situation where I need to allow a user to download a file dynamically determined from the URL. Before the download begins, I need to do some authentication, so the download has to run …
3
votes
4answers
694 views
Why can’t I remove this empty directory in Perl?
Hi there,
I am converting a linux script from http://www.perlmonks.org/index.pl?node_id=217166 specifically this:
#!/usr/bin/perl -w
use strict;
use Getopt::Std;
use File::Find;
@ARGV > 0 and …
1
vote
5answers
521 views
What are all the ways to traverse directory trees?
How do you traverse a directory tree in your favorite language?
What do you need to know to traverse a directory tree in different operating systems? On different filesystems?
What's your favorite …
2
votes
3answers
79 views
Code to get *.aspx in a website
Is there a method to get all of the .aspx files in my website? Maybe iterate through the site's file structure and add to an array?
