StefanK:
Wrong side of the bed much? No idea why you’re so pissed…I asked precisely because I want to know how. You seem upset because I simply restated the premise (so shoot me?) I’m guessing you’re misunderstanding what I want because your answers seem mixed (your example is local, not server, for example). So maybe you gave the right answer but wrong explanation?
Come on dude, have you known me to ignore you…jeebus you’ve been very helpful in the past…chill or don’t help if it bugs you so much. 
So let me back-up and try again, so maybe either a) I’ll get the answer I need, or b) you’ll give me the explanation that is going over my head.
I have a routine that used the shell “find” command to find the first-level contents of a given directory x-levels down in the directory structure and returns the item list. So, if the serverdirectory contains…
File01.jpg
File02.ai
Folder01
File03.psd
Folder02
Folder03
The list is something like…
{“Server:Directory:Subdirectory:UserFolder:File01.jpg”, “Server:Directory:Subdirectory:UserFolder:File02.ai”, “Server:Directory:Subdirectory:UserFolder:Folder01”, “Server:Directory:Subdirectory:UserFolder:File03.psd”, “Server:Directory:Subdirectory:UserFolder:Folder02”, “Server:Directory:Subdirectory:UserFolder:Folder03”}
…formatted “as text”
You said aliases are bad mojo, that’s fine. So is your example…
tell application "Finder"
set current_file to item 1 of folder _desktop --> for example document file "myFile" of folder Desktop." (Finder file specifier)
set current_modification_date to modification date of current_file -- no more specification or alias coercion needed
end tell
…which is great for a specific instance, but what if I’ve pre-collected for each folder as a bulk rather than parsing a folder at a time?
In other words, I have 10 folders with contents similar to above, so instead of doing them one at a time and jumping back and forth in the directories (since the “levels down” varies from place to place on my server), I collect all the files I wish to examine all at once, with their complete path from top-down, not in relation to some upper directory.
In other words my “items” has ceased to be directly generated by the Finder, but instead aggregated into the “items” in the aforementioned list.
Is that more clear and help with why I seem confused at your help.
I’m trying to do the right thing here…ask questions and learn…
Here’s the entire script, working, but apparently needing help to get rid of the “as alias” evils. ;-p
(DIamond Design is a Mac OS X Server mounted on my desktop…and please note the StefanK assistance throughout!)
Peace man…I’d buy you an Earle Grey to relax your nerves, but virtual tea tastes aweful. 
--
--Transfer Folder Marker & Cleaner
--by Kevin Quosig, 2007
--
--Marks and deletes old files in the Diamond Design Transfer File folder.
--
--
-- DECLARE PROPERTIES
--
-- debugging/logging on?
property g_debug : true
--basic file path and names
property g_home_folder_path : path to home folder
property g_log_file_name : "LOG--Overnight Automation.txt"
property g_transfer_files_location : "Diamond Design:Transfer Files"
--Mac OS names to be ignored
property g_exclusions_macosx : {"Temporary Items", "Trash", ".DS_Store", "TheFindByContentFolder", "TheVolumeSettingsFolder", "z_CS Separation Transition", "Icon
"}
--folder names not to be scanned
property g_exclusions_folders : g_exclusions_macosx & {"_VACATION REQUESTS", "WB"}
--folder names of users whose contents should never be deleted automatically
property g_exclusions_users : g_exclusions_macosx & {"SKU LISTS", "WB", "AR", "BW", "JR", "KQ", "Cost Tracking DB"}
--file marking threshold
property g_mark_days : 7 --files older than this number of days will be marked
set g_mark_date to ((current date) - (g_mark_days * days))
--file deletion threshold
property g_delete_days : 14 --files older than this number of days will be deleted
set g_delete_date to ((current date) - (g_delete_days * days))
--transfer folder size for additional reminders
property g_threshold_size : 300 as integer --size in megabytes
--
-- UTILITY HANDLERS
--
--Log Entry Generation
--
-- with help from StephanK of MacScripter
-- http://bbs.applescript.net/viewtopic.php?pid=76607#p76607
--
on logMe(log_string, indent_level)
if g_debug is true then --allows turning the debugger on and off so my logMe's can be left in final version
set log_target to ("Data: Automation:Logs:" & g_log_file_name) as text
try
set log_file_ref to open for access file log_target with write permission
repeat indent_level times
write tab to log_file_ref starting at eof
end repeat
write ((log_string as text) & return) to log_file_ref starting at eof
close access log_file_ref
return true
on error
try
close access file log_target
end try
return false
end try
end if
end logMe
-- Date stamp generator
--
-- with help from StefanK of MacScripter
-- http://bbs.applescript.net/viewtopic.php?id=20420
--
on dateStamp()
-- Load date components from system
tell (current date)
set dayStamp to day
set monthStamp to (its month as integer)
set yearStamp to year
end tell
--coerce components to two-digit form
set dayStamp to (text -2 thru -1 of ("0" & dayStamp as text))
set monthStamp to (text -2 thru -1 of ("0" & monthStamp as text))
set yearStamp to (text 3 thru 4 of (yearStamp as text))
--Assemble datestamp
return yearStamp & monthStamp & dayStamp as text
end dateStamp
-- Get a file/folder list of all items at a certain level inside a given folder
--
-- with help from chrys of MacScripter
-- http://bbs.applescript.net/viewtopic.php?pid=91191#p91191
--
on listGetter(folder_to_scan, scan_level, folder_exceptions)
--exceptions formatted for shell find
copy folder_exceptions to folder_exceptions
repeat with fe_ref in folder_exceptions
set contents of fe_ref to quoted form of contents of fe_ref
end repeat
set ASTID to AppleScript's text item delimiters
set AppleScript's text item delimiters to " -or -name "
set exclude_code to text 6 thru -1 of ("" & ({""} & folder_exceptions))
set AppleScript's text item delimiters to ASTID
--do shell find with exceptions
do shell script "/usr/bin/find " & (quoted form of POSIX path of folder_to_scan) & " ! \\( \\( " & exclude_code & " \\) -prune \\) -maxdepth " & scan_level & " -mindepth " & scan_level & " -print0 ; true" without altering line endings
set find0 to result
set {ASTID, text item delimiters} to {text item delimiters, {ASCII character 0}}
try
set POSIX_pathnames to text items 1 through -2 of find0 -- Drop the last text item because it is always empty (find -print0 always prints a trailing null).
set text item delimiters to ASTID
on error m number n from o partial result r to t
set text item delimiters to ASTID
error m number n from o partial result r to t
end try
script speedHack
property Mac_pathnames : {}
end script
repeat with P_pn in POSIX_pathnames
set end of speedHack's Mac_pathnames to (POSIX file (contents of P_pn)) as text
end repeat
speedHack's Mac_pathnames
end listGetter
--get user folders that aren't empty
--
on nonEmptyFolders(directory_to_filter)
set filtered_folder_list to {}
repeat with e from 1 to (number of items in directory_to_filter)
tell application "Finder"
set folder_to_check to (item e of directory_to_filter) as alias
set item_contents to (number of items in folder folder_to_check)
if number of items in folder folder_to_check > 0 then
set filtered_folder_list to filtered_folder_list & folder_to_check
end if
end tell
end repeat
return filtered_folder_list
end nonEmptyFolders
--
-- MAIN SCRIPT
--
my logMe("Transfer Folder Cleaner and Logger Begin--" & (current date), 1)
--COLLECT DATA
--get transfer folder categories (include empties)
set category_folders to {}
set category_folders to listGetter(g_transfer_files_location, 1, g_exclusions_folders)
--get user folders (include empties)
set user_folders to {}
repeat with j from 1 to (number of items in category_folders)
set user_folders to user_folders & listGetter(item j of category_folders, 1, g_exclusions_users)
end repeat
--get user folders that aren't empty
set user_folders_filtered to {}
set user_folders_filtered to nonEmptyFolders(user_folders)
--get user folder contents (skip empties)
set user_folders_filtered_contents to {}
repeat with k from 1 to (number of items in user_folders_filtered)
set user_folders_filtered_contents to user_folders_filtered_contents & listGetter(item k of user_folders_filtered, 1, g_exclusions_macosx)
end repeat
--filter for files older than mark date
set files_to_mark to {}
repeat with m from 1 to (number of items in user_folders_filtered_contents)
tell application "Finder"
set current_file to item m of user_folders_filtered_contents
set current_modification_date to modification date of item (current_file as alias)
if current_modification_date < g_mark_date then
set files_to_mark to files_to_mark & item m of user_folders_filtered_contents
end if
end tell
end repeat
--filter for files older than delete date
set files_to_delete to {}
repeat with d from 1 to (number of items in user_folders_filtered_contents)
tell application "Finder"
set current_file to item m of user_folders_filtered_contents
set current_delete_date to modification date of item (current_file as alias)
if current_delete_date < g_delete_date then
set files_to_delete to files_to_delete & item d of user_folders_filtered_contents
end if
end tell
end repeat
--MARK OLD FILES
repeat with currently_coloring in files_to_mark
tell application "Finder"
set label index of item (currently_coloring as alias) to "2"
end tell
end repeat
my logMe("Items over " & g_mark_days & " days: " & (number of items in files_to_mark), 2)
--DELETE OLDEST FILES
(*
repeat with currently_deleting in files_to_delete
tell application "Finder"
delete file currently_deleting
end tell
end repeat
*)
my logMe("Items over " & g_delete_days & " days: " & (number of items in files_to_delete), 2)
--get user folders that aren't empty (updated)
set user_folders_filtered to {}
set user_folders_filtered to nonEmptyFolders(user_folders)
my logMe("Transfer Folder Cleaner and Logger End--" & (current date), 1)