[Message Deleted]
Monisankar
Posts
-
Retrieving File type -
Does Firefox ignore attachEvent () method?Hi all, I think firefox browser ignores attachEvent(). I used it "onLoad" of window but nothing happened.If anyone can please suggest some alternate way of attachEvent()? Regards, Sankar
-
A string problem..Thanks to both of u. Got it and solved. Thanks
-
A string problem..Actually i am doing a program in JSFL(Flash Javascript).So i posted the thread here and it's a basic problem. Suppose, string = 'welcome to moni\'s homepage' var i = string.indexOf("\'"); var j = string.indexOf("\'",j); valueOfString = string.substring(i+1, j); now valueOfString is welcome to moni but i need to return it as welcome to moni's homepage. What should i do?Thanks
-
To change the last-modified time of a file?I want to change the modified time of a file by giving year,month..etc as input.To use SetFileTime() we need ptr to FILETIME structure.I am able to change the modified time to the current time by taking the systemtime.But facing problem to change to other input time.Please help...Thanks.
-
To set modified time of a file as current time?Got it!!..Thanx
-
To set modified time of a file as current time?How to set the modified time of a file as the current time?I used setFileTime()but have confusions.Can anyone give idea with exmple.Thanks in advance.
-
To get filename from filepath..?How to get file name from a given filepath without using winAPI for both windows and mac env?
-
How to get image dimensions?Is there any API to get dimensions(height and width)of an image(jpg or gif)? Please help..
-
How to delete a directory including its sub-dir and files?As using RemoveDirectory(),we can only delete empty dir,how should i proceed to delete a directory including its subdirectories and files.Please help..
-
Delete subdirectories and files...i want to delete the subdirectories and files of a directory.Using removeDirectory() only empty directories can be deleted.How should i proceed?please help..
-
SHCreateDirectory()How SHCreateDirectory() can be used to create nested directories?
-
How to create nested directories?Is it possible to create nested directories using CreateDirectory()?How exactly?
-
How to get FileTime?Actyally i need the intervals that have elapsed since 1601 and want to get this value as unsigned long.What should i do?
-
How to get FileTime?Using GetFileTime(),can get the last-modified time of a file.i need actually the elapsed time.how can i get?
-
How to get file-size of a file?The function should take only the constant pointer to the path of the file..
-
How to get file-size of a file?How can i implement one function to get the file size of a file which takes pointer to the file path?Please help..