Hi,
My application has a provision to change the dimensions of an image.
When dimensions of an image are changed, the original image is getting effected,
but the image is getting loaded from the "temporary internet files" folder when
trying to view it and so, the image is viewed with old dimensions.
Deleting temporary files will solave my problem. So, tried a sample code to access internet temp folder.
But to my surprise only one file is seen in strFiles array (desktop.ini), no other files are retrieved.
Sub
Main()End SubDim strFiles() As String = Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache))
If I given Environment.SpecialFolder.Desktop, all files are retrieved.
Do I need to set any permission to access internet files,
Please suggest me with some workaround for this.\
Regards,
Suman.N.M