ファイルを1行ずつ読み込む

 --ファイルを1行ずつ読み込む
set FH to open for access file fPath
repeat
	try
		set lineData to read FH until ASCII character (10)
		display dialog lineData
	on error
		exit repeat
	end try
end repeat
close access FH