作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想产生2个线程,并将每个线程移到不同的工作目录中。
std::thread t1([](){
boost::filesystem::current_path("/place/one");
// operate within "place/one"
});
std::thread t2([](){
boost::filesystem::current_path("/place/two");
// operate within "place/two"
});
t1.join();
t2.join();
void current_path(const path& p);
Effects: Establishes the postcondition, as if by ISO/IEC 9945 chdir().
Postcondition: equivalent(p, current_path()).
Throws: As specified in Error reporting.
[Note: The current path for many operating systems is a dangerous global state. It may be changed unexpectedly by a third-party or system library functions, or by another thread. -- end note]
current_path
(即
chdir
)不是线程安全的,因此更改目录的最后一个线程将影响另一个线程的全局状态。
最佳答案
由于UNIX进程的所有线程共享一个唯一的当前目录,因此,如果需要不同的current_path,则确实需要生成一个进程。
但是,可移植性将受到影响。
关于c++ - 如何以线程安全的方式更改目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59573987/
我是一名优秀的程序员,十分优秀!