使用 boost C++ 重命名文件夹: 拒绝访问
我尝试使用 Boost C++ 重命名文件夹,但出现异常“访问被拒绝”。 我正在寻找解决方案,但找不到!
我只是做了一个简单的“重命名(源,目标);” !!!
如果你有想法?
I try to rename a folder with Boost C++ but I got an exception "Access denied".
I have search for a solution, but I'm unable to find one!
I just do a simple "rename(source, target);" !!!
If you have ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当目标文件夹已存在时,您也会收到此错误消息。
You will also get this error message when target folder already exists.
可能是
源
被锁定(例如由另一个应用程序打开),或者您缺乏修改文件的适当权限。It might be that
source
is locked (open by another application for example), or that you lack appropriate permissions to modify the file.