size of file
-
How about
GetFileSize()
?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
-
How about
GetFileSize()
?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
-
but in this i have to pass handle of file, i want to use name of file to get size. or i can use handle of file if i get to know handle of file(is there any function from which i get handle of file) bye
You can use the FindFirstFile API to get this info! Don't try it, just do it! ;-)
-
but in this i have to pass handle of file, i want to use name of file to get size. or i can use handle of file if i get to know handle of file(is there any function from which i get handle of file) bye
smarty12 wrote: is there any function from which i get handle of file Yes,
CreateFile()
.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow