gpt4 book ai didi

c - 为什么具有相同源和目标的 MoveFile 会随机失败?

转载 作者:太空宇宙 更新时间:2023-11-04 03:37:28 25 4
gpt4 key购买 nike

当我在 Windows 7 系统上运行以下简单的 C 程序时

#include <stdio.h>
#include <windows.h>

int main() {
int i;

CreateDirectory("testdir", NULL);
CreateDirectory("testdir\\foo", NULL);
CreateDirectory("testdir\\bar", NULL);

for (i = 0; i < 10000; i++) {
BOOL result;

result = MoveFile("testdir\\bar", "testdir\\foo\\bar");
if (!result) {
fprintf(stderr, "rename bar => foo/bar: %d\n", GetLastError());
return 1;
}

result = MoveFile("testdir\\foo", "testdir\\foo");
if (!result) {
fprintf(stderr, "rename foo => foo: %d\n", GetLastError());
fprintf(stderr, "after %d iterations\n", i);
return 1;
}

result = MoveFile("testdir\\foo\\bar", "testdir\\bar");
if (!result) {
fprintf(stderr, "rename foo/bar => bar: %d\n", GetLastError());
return 1;
}
}

return 0;
}

调用 MoveFile("testdir\\foo", "testdir\\foo") 在随机迭代后失败,错误代码为 5 (ERROR_ACCESS_DENIED) :

C:\Users\nik>cl /O2 rename.c
Microsoft (R) C/C++ Optimizing Compiler Version 16.00.30319.01 for x64
Copyright (C) Microsoft Corporation. All rights reserved.

rename.c
Microsoft (R) Incremental Linker Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.

/out:rename.exe
rename.obj

C:\Users\nik>rmdir /s /q testdir

C:\Users\nik>.\rename
rename foo => foo: 5
after 52 iterations

C:\Users\nik>rmdir /s /q testdir

C:\Users\nik>.\rename
rename foo => foo: 5
after 219 iterations

C:\Users\nik>rmdir /s /q testdir

C:\Users\nik>.\rename
rename foo => foo: 5
after 23 iterations

这是为什么?

最佳答案

我发现是 Windows 搜索服务导致了错误。解决方案是通过控制面板中的索引选项排除该文件夹。

关于c - 为什么具有相同源和目标的 MoveFile 会随机失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31371417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com