为什么CreateFile在网络驱动器上失败

发布于 2025-01-20 22:06:41 字数 1222 浏览 0 评论 0原文

我有一个行为非常奇怪的安装...每次我们尝试在网络驱动器上复制某些内容时,我们都会使用如下代码检查可访问性:

procedure TForm1.TestAccess;
var fn : string;
    hdl : THandle;
    res : boolean;
    dir : string;
    flags : Cardinal;
begin
     dir := edDir.Text;
     flags := FILE_FLAG_DELETE_ON_CLOSE or FILE_FLAG_NO_BUFFERING or FILE_ATTRIBUTE_HIDDEN; 
     fn := FindUnusedFileName( IncludeTrailingPathDelimiter( dir ) + IntToStr( Random(10000) ) + '.tst' );

     memLog.Lines.Add('Try to create file: ' + fn);

     hdl := CreateFile( PChar(fN), GENERIC_READ or GENERIC_WRITE, FILE_SHARE_DELETE, nil, CREATE_NEW,
                        flags, 0 );

     res := hdl <> INVALID_HANDLE_VALUE;
     if not res then
     begin
          memLog.Lines.Add('Error: ' + SysErrorMessage(GetLastError));
     end
     else
         memLog.Lines.Add('Success');

     if res then
        CloseHandle(hdl);
end;

其中 memLogTMemo 并且edDir 只是一个编辑字段。

现在这是奇怪的部分...我在该系统上被拒绝访问,这意味着上传在大多数情况下都会失败(大多数情况下是这里的奇怪部分)。

另一件事是,在第一次尝试中我使用了 JvDirectoryEdit 控件。在这种情况下,结果是双重的...如果我在没有反斜杠的情况下输入目录(UNC 路径),我也会被拒绝访问。如果我输入最后一个反斜杠,并且弹出组合框窗口,显示该文件夹中的内容(也称为目录),它终于可以工作了!

所以...首先:有人知道问题可能是什么吗?我这里有什么问题吗?

I have one installation that behaves VERY oddly... Every time we try to copy something on a network drive we check accessibility with code like this:

procedure TForm1.TestAccess;
var fn : string;
    hdl : THandle;
    res : boolean;
    dir : string;
    flags : Cardinal;
begin
     dir := edDir.Text;
     flags := FILE_FLAG_DELETE_ON_CLOSE or FILE_FLAG_NO_BUFFERING or FILE_ATTRIBUTE_HIDDEN; 
     fn := FindUnusedFileName( IncludeTrailingPathDelimiter( dir ) + IntToStr( Random(10000) ) + '.tst' );

     memLog.Lines.Add('Try to create file: ' + fn);

     hdl := CreateFile( PChar(fN), GENERIC_READ or GENERIC_WRITE, FILE_SHARE_DELETE, nil, CREATE_NEW,
                        flags, 0 );

     res := hdl <> INVALID_HANDLE_VALUE;
     if not res then
     begin
          memLog.Lines.Add('Error: ' + SysErrorMessage(GetLastError));
     end
     else
         memLog.Lines.Add('Success');

     if res then
        CloseHandle(hdl);
end;

where memLog is a TMemo and edDir is simply an edit field.

Now here is the strange part... I get an access denied on that system meaning uploading will fail most of the time (most of the time is the strange part here).

Another thing is that in a first attempt I used the JvDirectoryEdit control. In that case the result is twofold... If I enter the directory (UNC Path) there without a backslash I get the access denied too. If I enter a final backslash and the combo box window pops up showing the content (aka directories) in that folder it finally works!!!

So... First: has anyone a clue what the problem might be and do I something wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃气十足 2025-01-27 22:06:41

我过去曾使用此过程来检查目录是否仅阅读,也许很有用:

 FUNCTION DirRO(NomeCartella : String) : Boolean;
      VAR VarFile : TextFile;
          NomCart : String;
    BEGIN
          Result := False;
          If NomeCartella[Length(NomeCartella)]='\'
             Then NomCart := NomeCartella
             Else NomCart := NomeCartella+'\';

          Try AssignFile(VarFile,NomCart+'^ghi.kol');
              {$I-}
              Rewrite(VarFile);
              {$I-}
              If IOResult<>0 Then
                 Begin
                 Result := True;
                 Exit;
                 End;
              CloseFile(VarFile);
              Erase(VarFile);
              Except Result := True;
          End;
    END;

I have used this procedure in the past to check if a directory is read-only, maybe it can be useful:

 FUNCTION DirRO(NomeCartella : String) : Boolean;
      VAR VarFile : TextFile;
          NomCart : String;
    BEGIN
          Result := False;
          If NomeCartella[Length(NomeCartella)]='\'
             Then NomCart := NomeCartella
             Else NomCart := NomeCartella+'\';

          Try AssignFile(VarFile,NomCart+'^ghi.kol');
              {$I-}
              Rewrite(VarFile);
              {$I-}
              If IOResult<>0 Then
                 Begin
                 Result := True;
                 Exit;
                 End;
              CloseFile(VarFile);
              Erase(VarFile);
              Except Result := True;
          End;
    END;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文