HsnMustafa / gdocbackup

Automatically exported from code.google.com/p/gdocbackup
0 stars 0 forks source link

Another char-substitution list #103

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Add an option to use a simpler char-substitution list for directory and file 
names.

Use:
     A-Za-z0-9.-_

instead of:
     List<char> invalidList = new List<char>();
     invalidList.AddRange(Path.GetInvalidPathChars());
     invalidList.AddRange(Path.GetInvalidFileNameChars());

Original issue reported on code.google.com by fht...@gmail.com on 6 Jan 2013 at 11:00