Greetings...
i am a php coder but don't know asp/asp.net. I have a very simple php code. but it as a limitation as my php server is 32bit it don't shows file size larger than 2gb. So, i need to convert below code to asp.net

so, if anyone can help me to convert this code then it would be great

here is the code:
Code:
<?php

	$strFilesArray = glob('../*');
	$strData ='';
	foreach($strFilesArray as $strFile)
	{
		if(is_file($strFile))
		{
			$strData = $strData . basename($strFile) . '//' . rawurlencode(basename($strFile)) . '//' . filesize($strFile) . "\r\n";
		}
	}
	if($strData == '')
	{
		$strData = 'No Files Found!';
	}
	
	echo $strData;

?>
thanks in advance
best regards