文件名是否有效

  • 主题发起人 主题发起人 import
  • 开始时间 开始时间
I

import

Unregistered / Unconfirmed
GUEST, unregistred user!
function IsValidFileName(const FileName: string): boolean; const
InValidChar: array[0..8] of char = ('/', '/', ':', '*', '?', '"', '<', '>', '|');
var
i: integer;
begin
result:=length(FileName) <= MAX_PATH;
if not Result then exit;
for i := low(InValidChar) to high(InValidChar) do
begin
result := pos(InValidChar, FileName) = 0;
if not Result then break;
end;
end;
 
后退
顶部