exist(x,'dir') slow for unavailable network drives
7 ビュー (過去 30 日間)
古いコメントを表示
I use exist(x,'dir') to check existence of a directory x. My problem is that checking existence of an address on a network drive when computer is not connected to the network takes something about 50 seconds. Checking existence of the address when computer is connected to the network however takes something about 0.0005 seconds.
I tried using
[a,b]=dos('net use x')
and I get list of connected network drives but it does not return the connected network drives as separate variable.
How can I speed up this process? I really appreciate any help!
4 件のコメント
回答 (1 件)
per isakson
2018 年 11 月 17 日
編集済み: per isakson
2018 年 11 月 17 日
I use exist(x,'dir') to check existence of a directory x. What's the value of x ?
Did you mean to run
num = exist( 'x:\', 'dir' );
which is fast enough whether 'x:\' exists or not.
3 件のコメント
per isakson
2018 年 11 月 17 日
編集済み: per isakson
2018 年 11 月 17 日
Good question. My guess is yes.
OP writes I get list of connected network drives and I guessed that x is her/his local drive letter.
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!