フィルターのクリア

copyfile: The system cannot find the path specified

42 ビュー (過去 30 日間)
Abhinav
Abhinav 2018 年 5 月 3 日
移動済み: Fangjun Jiang 2024 年 6 月 18 日
I get the follwoing error when using copyfile
The system cannot find the path specified.
I am using the following code
source='D:\Research\Thesis_work\Structural_uncertainty\data_collection\Precipitation\precip_hourly\p_39.3130_-87.3130.txt'
destination='D:\Research\Thesis_work\Structural_uncertainty\MatLab_codes\20180222\huc_0512011115\rainfall_data_hourly\p1.txt'
copyfile(source,destination)
is there anything wrong with the code or is it a some MATLAB bug?
  1 件のコメント
Vasiliki Vasilopoulou
Vasiliki Vasilopoulou 2024 年 6 月 17 日
移動済み: Fangjun Jiang 2024 年 6 月 18 日
Hello,
I have a problem. I want to run an already code but the message that appears is "the system cannot the path specified".
Has it a relationship with clusters? I don't understand.

サインインしてコメントする。

採用された回答

Fangjun Jiang
Fangjun Jiang 2018 年 5 月 3 日
use exist(source,'file') to see if the file exists first. Your source file name contains multiple "." and "-'
  3 件のコメント
Fangjun Jiang
Fangjun Jiang 2018 年 5 月 3 日
then you need to check
[p,f]=fileparts(destination);
exist(p,'dir');
Abhinav
Abhinav 2018 年 5 月 3 日
I see. It worked. I was using mkdir to create the destination folder in a wrong way, that's why destination folder didn't exist. I should have thought about it myself. Thanks a lot!

サインインしてコメントする。

その他の回答 (2 件)

HEEKWON LEE
HEEKWON LEE 2018 年 8 月 10 日
編集済み: Walter Roberson 2018 年 8 月 11 日
I have same issue but little bit differnt.
Asource='\\11.11.11.11\a.png'
Bdes='D:\folder'
Copyfile Asource Bdes
But it has appeared message "can noy find file"
Also i was checked exist function.
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 8 月 11 日
You have the wrong syntax for Asource. You are using remote file naming, which requires the general form
\\server\share\path\file
You have the server, 11.11.11.11, but then you skip the share and path and go directly to the file a.png
It is not really clear that copyfile supports remote file naming.
In any case you need
copyfile(Asource, Bdes)
Your current command is the same as
copyfile('Asource', 'Bdes')

サインインしてコメントする。


Hussein A A
Hussein A A 2023 年 6 月 5 日
Matlab code is case sensitive, so make sure about the exact spelling within your OS. Moreover, you can try loading or reading and writing of such path into the source and destination file Use fprintf is another alternative
  1 件のコメント
Walter Roberson
Walter Roberson 2023 年 6 月 5 日
MATLAB code is case-sensitive, but the question has to do with difficulty with files . Whether any particular file name is case sensitive or not depends upon the way the particular file system is configured.
By default, NTFS (Windows) and HFS+ (MacOS) and APFS (MacOS) are not case-sensitive file systems, but all three of those can be configured as case-sensitive.
(Apparently these days on Windows 10 you can enable case sensitivity for individual folders; https://www.windowscentral.com/how-enable-ntfs-treat-folders-case-sensitive-windows-10 )

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by