mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 08:11:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			326 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			326 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example33;
 | |
| 
 | |
| { This program demonstrates the ExpandFileName function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Procedure Testit (F : String);
 | |
| 
 | |
| begin
 | |
|   Writeln (F,' expands to : ',ExpandFileName(F));
 | |
| end;
 | |
| 
 | |
| Begin
 | |
|   Testit('ex33.pp');
 | |
|   Testit(ParamStr(0));
 | |
|   Testit('/pp/bin/win32/ppc386');
 | |
|   Testit('\pp\bin\win32\ppc386');
 | |
|   Testit('.');
 | |
| End. | 
