TweetFollow Us on Twitter

Jan 96 Tips
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

 
AAPL
$565.32
Apple Inc.
-5.24
GOOG
$603.66
Google Inc.
-5.80
MSFT
$29.07
Microsoft Corpora
-0.04
MacNews Search:
Community Search:
view counter

view counter
view counter
view counter
view counter
view counter
view counter
view counter
view counter

Empire of the Eclipse Review
Empire of the Eclipse Review By Carter Dotson on May 24th, 2012 Our Rating: :: OVERSHADOWINGiPhone App - Designed for the iPhone, compatible with the iPad Empire of the Eclipse is an ambitious strategy MMO that is very deep, and aimed at dedicated players.   | Read more »
Bejeweled HD Review
Bejeweled HD Review By Jennifer Allen on May 24th, 2012 Our Rating: :: ADDICTIVEiPad Only App - Designed for the iPad The iPad version of the ever addictive Match Three title.   Developer: PopCap Price: $3.99 Version Reviewed: 1.2 Device Reviewed On: iPad 2 | Read more »
Facebook Releases New Camera App To Stre...
While not a replacement for Instagram, Facebook Camera is a good first step in this month+ old union of the two companies. Released today, Facebook camera looks to streamline the viewing of photos and the uploading of them. The app allows you to apply simple filters to images, tag people, upload multiple images at once, and post a note about the... | Read more »
Missile Monkey Review
Missile Monkey Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FLYING LOWUniversal App - Designed for iPhone and iPad Missile Monkey is a must miss   Developer: Munsey Clan Games Price: $0.99 Version Reviewed: 1.0 Device Reviewed On: iPad 2 | Read more »
Boomlings Review
Boomlings Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FUN FREEBIEUniversal App - Designed for iPhone and iPad Boomlings is a traditional matching puzzle game, with some explosive twists   | Read more »
Dave vs Cave Review
Dave vs Cave Review By Jason Wadsworth on May 24th, 2012 Our Rating: :: WATCH FOR FALLING ROCKSUniversal App - Designed for iPhone and iPad Kid falls down hole, kid gets trapped in cave, kid fights evil rock monsters to escape.   Developer: Origame64 | Read more »
Python Pocket Power: Python Bytes 3 – Mo...
Python fans are certain to welcome the best bits from the penultimate season of the BBC sketch comedy in a new iPhone app: Python Bytes 3 – Monty Python Series 3. If you have a flair for the obvious, you’ll correctly assume this is third in a series of apps that feature the best skits from the cult-classic, Monty Python’s Flying Circus. | Read more »
Slingshot Racing Review
Slingshot Racing Review By Carter Dotson on May 24th, 2012 Our Rating: :: SWING ME AROUNDUniversal App - Designed for iPhone and iPad Slingshot Racing is a racing game where players must race around the courses by grappling and swinging around the slippery courses.   | Read more »
Go to the Cannes Film Festival with The...
For the movie industry the Cannes Film Festival is one of the most important events in which to preview films and watch the stars. The 65th annual festival is happening in France right now, but if you weren’t able to secure an invite or make the journey, hope is not lost. Film buffs and star gazers can keep tabs on the festival with The Hoolywood... | Read more »
David Haye’s Knockout Review
David Haye’s Knockout Review By Jennifer Allen on May 24th, 2012 Our Rating: :: PUNCHING FUNUniversal App - Designed for iPhone and iPad A simple yet satisfying cartoon-style boxing game.   | Read more »
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.