Denna delen av 99 uppdateras inte längre utan har arkiverats inför framtiden som ett museum.
Här kan du läsa mer om varför.
Mac-nyheter hittar du på Macradion.com och forumet hittar du via Applebubblan.

If exists file xxx then

Tråden skapades och har fått 2 svar. Det senaste inlägget skrevs .
1

Gokväll

Varför funkar inte min kod?
Bildfil "4.tif" finns i en av tre undermappar i mappen "Test_mapp".
Koden replikerar bara dialogrutan med ordet "Nej".

Tacksam för svar

Erland Segerstedt, Kusmark

---------------------- kod -------------------------------
set bildNr to "4"
set cdSkiva_Lager to alias "dator:Users:home:Desktop:Test_mapp:"

tell application "Finder"
set listofFolders to the name of every folder of folder cdSkiva_Lager
set listofFiles to the name of every file of cdSkiva_Lager
end tell

tell application "Finder"
set numOfFolders to (count listofFolders)
set numOfFiles to (count listofFiles)

repeat with i from 1 to numOfFolders
set cdSkivans_mappNamnet to get ((the name) in item i) of cdSkiva_Lager
tell application "Finder"
if (exists (file (bildNr & ".tif") of (alias cdSkivans_mappNamnet))) then
set fileFound to true
display dialog "Ja"
else
set fileFound to false
display dialog " Nej"
end if
end tell
end repeat
end tell

---------------------- slut kod -------------------------------

  • Medlem
  • International user
  • 2006-10-29 19:44

Du tappar bort sökvägen i raden

if (exists (file (bildNr & ".tif") of (alias cdSkivans_mappNamnet))) then

  • Medlem
  • International user
  • 2006-10-29 20:00

Jag vet inte riktig vad du vill med ditt script, men det har en hel del felaktigheter när det gäller referenser i filsystemt. Nedanstående har jag ändrat så det fungerar (hjälpligt).

set bildNr to "4"
set cdSkiva_Lager to alias "Macintosh HD:Users:wire:Desktop:Test_Mapp:"

tell application "Finder"
	--set listofFolders to the name of every folder of folder cdSkiva_Lager
	set listofFolders to entire contents of folder cdSkiva_Lager
	set listofFiles to the name of every file of cdSkiva_Lager
end tell

tell application "Finder"
	set numOfFolders to (count listofFolders)
	set numOfFiles to (count listofFiles)
	
	--repeat with i from 1 to numOfFolders
	repeat with i in listofFolders
		--set cdSkivans_mappNamnet to get ((the name) in item i) of cdSkiva_Lager
		tell application "Finder"
			if (exists (file (bildNr & ".tif") of (i))) then
				set fileFound to true
				display dialog "Ja"
			else
				set fileFound to false
				display dialog " Nej"
			end if
		end tell
	end repeat
end tell
Senast redigerat 2006-10-29 20:13
1
Bevaka tråden