1

i'm using fileopen() function to open the file, after doing all the works i'm using fileclose() to close the file. but when i access the file again it returns already the file is opened by another process.

sample:

Dim intFile As Integer = FreeFile() FileOpen(intFile, mstrFilename, OpenMode.Binary, OpenAccess.Read, OpenShare.LockWrite) FileClose(intFile) 

Thanks!

1 Answer 1

4

I think you could use the System.IO.File class for all file operations.

Sample:

var fs = File.OpenWrite(); var info = new UTF8Encoding(true).GetBytes("Test of the OpenWrite method."); fs.Write(info, 0, info.Length); fs.Close(); 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.