Ignore:
Timestamp:
8/4/2010 10:36:03 AM (22 months ago)
Author:
lowjoel
Message:

Fixed NotSupportedException? when issuing file=path or dir=path commands to Eraser.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser/Eraser.DefaultPlugins/ErasureTargets/FileErasureTargetConfigurer.cs

    r2232 r2237  
    9595                return true; 
    9696            } 
    97             else if (File.Exists(argument)) 
     97             
     98            try  
    9899            { 
    99                 filePath.Text = argument; 
    100                 return true; 
     100                if (File.Exists(argument)) 
     101                { 
     102                    filePath.Text = argument; 
     103                    return true; 
     104                } 
     105            } 
     106            catch (NotSupportedException) 
     107            { 
    101108            } 
    102109 
Note: See TracChangeset for help on using the changeset viewer.