Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
7k views

Is there a way of making strings file-path safe in c#?

My program will take arbitrary strings from the internet and use them for file names. Is there a simple way to remove the bad characters from these strings or do I need to write a custom function for ...
4
votes
1answer
243 views

Visual Studio: Running jsmin as a post-build event

I'm trying to add jsmin.exe as a post-build event to my VS 2010 project but I get "error code 9009" when I try to build my project. I've tested at the command prompt and found that if I navigate to ...
2
votes
2answers
301 views

Load an image to UIImage from a file path to the asset library

Related to my previous question here. I have a path to an image in the asset library , for example: assets-library://asset/asset.JPG?id=1000000001&ext=JPG Now, how could I load the image from ...
2
votes
1answer
210 views

the physical path for my files inside the Resources folder of XCode (for IOS)

I'm developing an application for iPad. I want to access a text file inside the Resources folder! I'm doing that in following way: NSString* filePath = ...
1
vote
1answer
38 views

Installer Won't Accept File Path With Space [closed]

I'm trying to install an application in Windows 7, and when I specify a installation path with a space (Like "Program Files"), I get an error. I've tried excluding the space, putting the path in ...
1
vote
1answer
237 views

Options for storing file path of the component in database

I have set of files (which are essentially ".exe" files) that I allow the users to download from my website. To have a clearer picture have a look at the this screenshot (it is just a academic ...
1
vote
1answer
374 views

how to resolve file path reference to a file in asp.net mvc

hi how to resolve file path reference to a file in asp.net mvc. Suppose I have an image file in the content/image/img.jpg". How do i get the physical path of the file in asp.net mvc.
1
vote
6answers
1k views

Is file path a url?

I have a variable in code that can have file path or url as value. Examples: http://someDomain/someFile.dat file://c:\files\someFile.dat c:\files\someFile.dat So there are two ways to represent a ...
0
votes
1answer
22 views

FireBreath find system path

I'm new to firebreath and I am developing an NPAPI plugin to be packaged to a Google Chrome Extension. I am having troubles with creating a method that retrieves where the DLL is currently in. Any ...
0
votes
2answers
230 views

Applescript combining file paths

I am using applescript with QuarkXpress and want to save a file into eps format. The saving is perfectly fine, except for the location of the saved file. Here's the relevant code: set newFileName to ...
-1
votes
2answers
1k views

VB6: easy way to get folder name from filepath

If I have the full path of a file: eg. c:\files\file.txt What would be the easiest way to get the folder of this file: eg. c:\files\ ?