File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public ExportFileForm(Volume volume)
2626
2727 private void ExportFileForm_Load ( object sender , EventArgs e )
2828 {
29- m_fileSystem = FileSystemHelper . ReadFileSystem ( m_volume ) ;
29+ m_fileSystem = FileSystemHelper . ReadFileSystem ( m_volume , true ) ;
3030 if ( m_fileSystem != null )
3131 {
3232 foreach ( FileSystemEntry entry in m_fileSystem . ListEntriesInRootDirectory ( ) )
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ public static string GetExtentsInformation(DynamicVolume volume)
113113 public static string GetFileSystemInformation ( Volume volume )
114114 {
115115 StringBuilder builder = new StringBuilder ( ) ;
116- FileSystem fileSystem = FileSystemHelper . ReadFileSystem ( volume ) ;
116+ FileSystem fileSystem = FileSystemHelper . ReadFileSystem ( volume , true ) ;
117117 if ( fileSystem != null )
118118 {
119119 builder . AppendFormat ( "File system: {0}\n " , fileSystem . Name ) ;
You can’t perform that action at this time.
0 commit comments