Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Pocket PC: custom RAPI class for operating with the Object Store Databases
Converting a decimal string to an integer
Pocket PC: base class
Using the GetTempFileName
Enumerating Processes -- Win9*
GDI+: how to make VFP controls visually shake and shudder
How to build UDP responder
Printing text on the main VFP window
StrDup returns a pointer to the duplicate of a source VFP string
Using Beep and Sleep functions to make the old tin buzz sing (WinNT only?)
Creating a directory on the FTP
How to intercept window messages sent to VFP form
List of addresses in the AutoDial mapping database
Obtaining heap handles and enumerating memory blocks for the current VFP session (WinNT only)
Pocket PC: custom RAPI class for operating with the System Registry
URL: splitting into its component parts
Wininet last error description
Accessing examples contained in this reference through Web Services
Enumerating sessions established on a server
How to perform Base64 encoding/decoding using Cryptography API Functions
Obtaining a handle to the desktop associated with the calling thread
Smart Card Database Query Functions
URL: converting unsafe characters and spaces into escape sequences
Converting path to original case
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: 114  
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 (107.22.156.205)
5.35 hrs.Function: 'DeleteUrlCacheEntry'
7.07 hrs.Example: 'Comparing file times'
 Example: 'How to display advanced Task Dialog (Vista)'
 Example: 'Reading and setting Environment variables'
13.81 hrs.Function: 'CeMoveFile'
 Function: 'FindNextFile'
14.16 hrs.Function: 'SetCapture'
 Example: 'Accessing LSA Policy object (Local Security Authority)'
 Function: 'GetWindowLong'
15.43 hrs.Function: 'LoadString'
Function group: 'Resource'
Google
Advertise here!