File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed
src/libraries/System.Runtime/tests/System.IO.FileSystem.Tests Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -135,25 +135,6 @@ public static TheoryData<string> ValidFileNames
135135 }
136136 }
137137
138- /// <summary>
139- /// Filenames with control characters that are only valid on Unix.
140- /// Windows reserves control characters 0-31 as invalid.
141- /// Use ValidFileNames instead which includes these on Unix platforms.
142- /// </summary>
143- public static TheoryData < string > UnixOnlyFileNames
144- {
145- get
146- {
147- return new TheoryData < string >
148- {
149- "file\t name" , // tab
150- "file\r name" , // carriage return
151- "file\v name" , // vertical tab
152- "file\f name" // form feed
153- } ;
154- }
155- }
156-
157138 /// <summary>
158139 /// Filenames with trailing spaces or periods. On Windows, these require \\?\ prefix for creation
159140 /// but can be enumerated. Direct string-based APIs will have the trailing characters stripped.
You can’t perform that action at this time.
0 commit comments