• MacTech Network:
  • Tech Support
  • |
  • MacForge.net
  • |
  • Apple News
  • |
  • Register Domains
  • |
  • SSL Certificates
  • |
  • iPod Deals
  • |
  • Mac Deals
  • |
  • Mac Book Shelf

MAC TECH

  • Home
  • Magazine
    • About MacTech in Print
    • Issue Table of Contents
    • Subscribe
    • Risk Free Sample
    • Back Issues
    • MacTech DVD
  • Archives
    • MacTech Print Archives
    • MacMod
    • MacTutor
    • FrameWorks
    • develop
  • Forums
  • News
    • MacTech News
    • MacTech Blog
    • MacTech Reviews and KoolTools
    • Whitepapers, Screencasts, Videos and Books
    • News Scanner
    • Rumors Scanner
    • Documentation Scanner
    • Submit News or PR
    • MacTech News List
  • Store
  • Apple Expo
    • by Category
    • by Company
    • by Product
  • Job Board
  • Editorial
    • Submit News or PR
    • Writer's Kit
    • Editorial Staff
    • Editorial Calendar
  • Advertising
    • Benefits of MacTech
    • Mechanicals and Submission
    • Dates and Deadlines
    • Submit Apple Expo Entry
  • User
    • Register for Ongoing Raffles
    • Register new user
    • Edit User Settings
    • Logout
  • Contact
    • Customer Service
    • Webmaster Feedback
    • Submit News or PR
    • Suggest an article
  • Connect Tools
    • MacTech Live Podcast
    • RSS Feeds
    • Twitter

ADVERTISEMENT
Volume Number:12
Issue Number:1
Column Tag:Tips & Tidbits

Tips & Tidbits

By Steve Sisak, Contributing Editor

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Here is a handy function for making sure that an undeletable “file from hell” doesn’t get in the way during program execution, just move it to the Trash. This only works when the file is on the same volume as the Trash, however.

Greg Poole

File: FSpTrashFile.h

/******************************************************************************
    FSpTrashFile.h
    
    history:
    modified:  xx/xx/xx  who are you? what did you do?
    created:   11/23/94         greg poole

    Greg Poole
    Vital Images, Inc.
    email: greg@vitalimages.com

 ******************************************************************************/

#pragma once

#ifdef __cplusplus
 extern "C" {
#endif
 extern OSErr  FSpTrashFile( FSSpecPtr file );
#ifdef __cplusplus
 }
#endif


File: FSpTrashFile.c
    
/******************************************************************************
    Move a file to the trash if it is not possible to delete it.
    Can only move file to the trash if it is on the same volume
    as the file to be deleted.
 ******************************************************************************/

#include <Folders.h>
#include "FSpTrashFile.h"

OSErr FSpTrashFile( FSSpecPtr theFile )
{
 OSErr  theErr = noErr;
 short  vRefNum;
 long   dirID;
 FSSpec spec;
 FSSpecPtrtheTrash = &spec;
 
    // don’t go any further if there isn’t a file to deal with or if the
    // file was deleted successfully
    //
 theErr = FSpDelete( theFile );
 if ( theErr == fnfErr || theErr == noErr )
 return noErr;
 
    // if we got this far, we had a problem deleting the file,
    // don’t worry, relax and just trash it
 theErr = FindFolder( kOnSystemDisk, kTrashFolderType, 
 kDontCreateFolder, &vRefNum, &dirID );
 
 if ( theErr == noErr )
 theErr = FSMakeFSSpec( vRefNum, dirID, "\p", theTrash );

 if ( theErr == noErr )
 if ( theFile->vRefNum != theTrash->vRefNum )
 theErr = diffVolErr;
 
 if ( theErr == noErr )
 theErr = CatMove( theFile->vRefNum, theFile->parID, 
 theFile->name, theTrash->parID, theTrash->name );

 return theErr;
 
} // end FSpTrashFile

// define TEST_TRASH_FILE for a standalone test
#define TEST_TRASH_FILE

#if defined( TEST_TRASH_FILE )

    // local function prototypes
 static void     InitTheMac( void );
 static Boolean  GetAFile( FSSpecPtr file );
 
 static void InitTheMac( void )
 {
 InitGraf( &qd.thePort );
 InitFonts();
 InitWindows();
 InitMenus();
 TEInit();
 InitDialogs( 0L );
 InitCursor();
 MaxApplZone();
 } // end InitTheMac
 
 static Boolean GetAFile( FSSpecPtr file )
 {
 SFTypeList types;
 StandardFileReply reply;
 
 StandardGetFile( NULL, -1, types, &reply );
 if ( reply.sfGood )
 BlockMove( &reply.sfFile, file, sizeof( FSSpec ) );
 return reply.sfGood;
 } // end GetAFile

 void main( void )
 {
 FSSpec srcFileSpec;
 OSErr  theErr = noErr;
 
 InitTheMac();
 if ( GetAFile( &srcFileSpec ) )
 theErr = FSpTrashFile( &srcFileSpec );
 } // end main

#endif // TEST_TRASH_FILE

 
MacTech Only Search:
Community Search:

 
 
 

 
 
 
 
 
  • SPREAD THE WORD:
  • Slashdot
  • Digg
  • Del.icio.us
  • Reddit
  • Newsvine
  • Generate a short URL for this page:



MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797
MacTech is a registered trademark of Xplain Corporation. Xplain, "The journal of Apple technology", Apple Expo, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, Apple Expo, MacTech Central, MacTech Domains, MacNews, MacForge, and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.
 
Nov. 20: Take Control of Syncing Data in Sow Leopard' released
Nov. 19: Cocktail 4.5 (Leopard Edition) released
Nov. 19: macProVideo offers new Cubase tutorials
Nov. 18: S Stardom anounces Safe Capsule, a companion piece for Apple's
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live