Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Winsock: how to retrieve a service information corresponding to a port
Accessing LSA Policy object (Local Security Authority)
GDI+: Drawing a Pie Chart
Storing screen shot of a form to enhanced metafile (*.emf)
System and Local Time values
Browsing Windows Known Folders (Special Folders)
Monitoring changes occurring within a directory
Pocket PC: base class
Reading metrics for the currently selected font
Using the RestartDialog function -- restarting Windows
GDI+: Creating thumbnails to preview images in a directory
MapiSendMail class for Visual FoxPro application
Storing the environment strings in cursor
The window and its ancestors
Writing to INI file
How to block the ALT+TAB shortcut (WinXP)
How to make the caption of a VFP application flashing in the Windows task bar
How to retrieve number of objects in the Recycle Bin
Round FoxPro form
Changing pitch and speed of a wave file
How to display the Print property sheet
Quering Audio Mixer Device
Retrieving Printer Device Context using PrintDlg function
Using named pipes for interprocess communication
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: 83  
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 (54.234.126.92)
1.7 hrs.Example: 'MapiSendMail class for Visual FoxPro application'
2 hrs.Example: 'Creating a clipping region from the path selected into the device context of a form'
 Example: 'How to access a file using not its name but an alias (hard link)'
3.71 hrs.Example: 'Obtaining the bounding rectangle for the specified device context'
3.97 hrs.Example: 'How to save registry key including its subkeys and values to a file'
6.61 hrs.Example: 'Detecting changes in connections to removable drives (VFP9)'
23.77 hrs.Example: 'Deleting files into the Recycle Bin'
 Function: 'RegEnumKeyEx'
1 day(s)Function: 'GdipCreateFromHDC2'
 Example: 'Using the NetMessageBufferSend to send messages on the network'
Google
Advertise here!