필터 지우기
필터 지우기

Read size of the file in Windows Server 2012

조회 수: 1 (최근 30일)
Kanchibhotla Chandra Sekhar
Kanchibhotla Chandra Sekhar 2018년 8월 14일
I want to read the file size in windows server 2012. I have used the -
files_log = [ dir(fullfile(cd,'Matlab_log_file.txt'))];
which is working in the local pc but not in the windows server 2012. What is the best way to read the file size ?

답변 (1개)

Jan
Jan 2018년 8월 14일
files_log = dir(fullfile(cd, 'Matlab_log_file.txt'));
(without the unneeded square brackets) is still the best and working code on every operating system and file system. So check twice, what is not working as expected, and post any details about this problem here. Maybe your current directory is not where you expect it to be.
  댓글 수: 1
Kanchibhotla Chandra Sekhar
Kanchibhotla Chandra Sekhar 2018년 8월 20일
@Jan, I think the "cd" in the code is creating the problem. Since in the we are using the the compiled matlab file in the production server of Windows Server 2012. It is even difficult to check the when server is running. But i didnot get a chance of checking what is the exact problem when that line executes.
try
files_log = dir(fullfile(cd, 'Matlab_log_file.txt'));
catch Me
disp(Me.message);
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by