--------------------------------------------------------------------------- ��� �������� ����� ? (�������� ? ��� *)
| 91 | //--------------------------------------------------------------------------- |
| 92 | // ��� �������� ����� ? (�������� ? ��� *) |
| 93 | bool IsFileMask(char * szName) |
| 94 | { |
| 95 | if( !szName ) |
| 96 | return false; |
| 97 | int l = strlen(szName); |
| 98 | for(int i=0; i<l; i++) |
| 99 | if( szName[i]=='?' || szName[i]=='*' ) |
| 100 | return true; |
| 101 | return false; |
| 102 | } |
| 103 | //--------------------------------------------------------------------------- |
| 104 | void DeleteBadCharsFromFileName(String & name) |
| 105 | { |
nothing calls this directly
no outgoing calls
no test coverage detected