Parsi Coders
سورس کد نمایش حجم فایل مورد نظر (سی) - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: C and C++ (http://parsicoders.com/forumdisplay.php?fid=54)
+--- موضوع: سورس کد نمایش حجم فایل مورد نظر (سی) (/showthread.php?tid=2435)



سورس کد نمایش حجم فایل مورد نظر (سی) - Amin_Mansouri - 06-16-2012

درود
با سورس زیر که با زبان سی نوشته شده ات میتونید حجم فایل مشخص شده رو بدست اورید.
english
Display the size of a file in C
سورس کد :
کد:
Display the size of a file in C#include <stdio.h>
#include <io.h>
#include <fcntl.h>
#include <sys\stat.h>
int main()
{
int fp;long file_size;if ((fp = open("f:/cprojects/urls.txt", O_RDONLY)) == -1)
printf("Error opening the file \n");
else
{
file_size = filelength(file_handle);
printf("The file size in bytes is %ld\n", file_size);
close(fp);
}
return 0;
}