|
-
Jun 9th, 2000, 07:40 PM
#1
Thread Starter
Junior Member
I am copying a font file (.ttf) in through Visual Basic 5 in Windows\Fonts Folder while I am using Windows 95. The file gets copied in the specified folder but when I try to delete the same, it does not deletes it (if I use this file after copying it, it does not deletes and displays the mesage "Path access error") however if I dont use it then it deletes it successfully.
Note: I am Copying and deleting through Visual Basic 5.
-
Jun 9th, 2000, 07:58 PM
#2
_______
Things to check out.
Path/File access error (Error 75)
During a file-access or disk-access operation, for example, Open, MkDir, ChDir, or RmDir, the operating system couldn't make a connection between the path and the file name. This error has the following causes and solutions:
The file specification isn't correctly formatted.
A file name can contain a fully qualified (absolute) or relative path. A fully qualified path starts with the drive name (if the path is on another drive) and lists the explicit path from the root to the file. Any path that isn't fully qualified is relative to the current drive and directory.
You attempted to save a file that would replace an existing read-only file.
Change the read-only attribute of the target file or save the file with a different file name.
You attempted to open a read-only file in sequential Output or Append mode.
Open the file in Input mode or change the read-only attribute of the file.
For additional information, select the item in question and press F1.
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|