Using Win32 functions in Visual FoxPro Image Gallery
File Management
..msdn
CopyFile
CopyFileTransacted
CreateDirectory
CreateFile
CreateFileTransacted
CreateHardLink
CreateSymbolicLink
DeleteFile
DeleteFileTransacted
FindClose
FindCloseChangeNotification
FindFirstChangeNotification
FindFirstFile
FindNextChangeNotification
FindNextFile
FlushFileBuffers
GetBinaryType
GetCurrentDirectory
GetDriveType
GetFileAttributes
GetFileAttributesEx
GetFileInformationByHandle
GetFileType
GetFullPathName
GetLongPathName
GetShortPathName
GetTempFileName
GetTempPath
LockFile
MoveFile
MoveFileTransacted
OpenFile
QueryDosDevice
ReadDirectoryChangesW
ReadFile
RemoveDirectory
RemoveDirectoryTransacted
ReplaceFile
SearchPath
SetCurrentDirectory
SetEndOfFile
SetFileAttributes
SetFilePointer
SetFilePointerEx
SetSearchPathMode
UnlockFile
WriteFile
_lclose
_lopen
Code examples:
Changing file attributes
How to test file attributes (key method for FileExists and DirectoryExists routines)
Changing file attributes

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
LPARAMETERS  lpFileName
 
#DEFINE FILE_ATTRIBUTE_READONLY       1  
#DEFINE FILE_ATTRIBUTE_HIDDEN         2  
#DEFINE FILE_ATTRIBUTE_SYSTEM         4  
#DEFINE FILE_ATTRIBUTE_DIRECTORY     16  
#DEFINE FILE_ATTRIBUTE_ARCHIVE       32  
#DEFINE FILE_ATTRIBUTE_NORMAL       128  
#DEFINE FILE_ATTRIBUTE_TEMPORARY    512  
#DEFINE FILE_ATTRIBUTE_COMPRESSED  2048  
 
DECLARE SHORT SetFileAttributes IN kernel32;
    STRING lpFileName, INTEGER dwFileAttributes
 
DECLARE INTEGER GetFileAttributes IN kernel32 STRING lpFileName 
 
* read current attributes for this file
dwFileAttributes = GetFileAttributes (lpFileName)
 
IF dwFileAttributes = -1
* the file does not exist
    RETURN
ENDIF
 
IF dwFileAttributes > 0
    * read-only attribute to be set
    dwFileAttributes = BitOr(dwFileAttributes, FILE_ATTRIBUTE_READONLY)
 
    * archive attribute to be removed
    IF BitAnd(dwFileAttributes, FILE_ATTRIBUTE_ARCHIVE) = FILE_ATTRIBUTE_ARCHIVE
        dwFileAttributes = dwFileAttributes - FILE_ATTRIBUTE_ARCHIVE
    ENDIF
 
    * setting selected attributes
    = SetFileAttributes (lpFileName, dwFileAttributes)
ENDIF
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1120 bytes  
Created: 2001-08-14 12:00:00  
Modified: 2007-08-02 14:45:37  
Visits in 7 days: 80  
Listed functions:
GetFileAttributes
SetFileAttributes
Printer friendly API declarations
My comment:
Pass a file name to this procedure. This code sets read-only and clears archive attributes for the selected file.

DOS command ATTRIB can be used for the same purpose:
ATTRIB -R c:\mydir\*.* /S
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (23.22.181.15)
5 sec.Example: 'Drawing a rectangle using Windows regular edges and borders'
1.84 hrs.Example: 'GetFileOwner - Get the owner of an NTFS file'
 Function: 'GetTempFileName'
Function group: 'File Management'
2.72 hrs.Function: 'FreeLibrary'
 
Function group: 'Authentication'
 Example: 'Copying files as a transacted operation (Vista)'
Google
Advertise here!