Tagged Questions
The file-access tag has no wiki summary.
39
votes
7answers
22k views
how can you easily check if access is denied for a file in .NET?
Basically, I would like to check if I have rights to open the file before I actually try to open it; I do not want to use a try/catch for this check unless I have to. Is there a file access property I ...
15
votes
7answers
21k views
Local file access with javascript
Is there any local file manipulation that's been done with JavaScript? I'm looking for a solution that can be accomplished with no install footprint like requiring AIR.
Specifically, I'd like to read ...
7
votes
3answers
497 views
How to copy a file while it is being used by other process
Does it is possible to copy a file which is being using by other process at the same time.
cause when i am trying to copy by this code it showing error.
System.IO.File.Copy(s, destFile, true);
...
7
votes
2answers
267 views
How to read a file which is currently used, like Windows does when copying it?
One of my applications is intended to read (and only read) files which may be in use.
But, when reading a file which is already opened in, for example, Microsoft Word, this application throws a ...
7
votes
5answers
452 views
How to intercept the access to a file in a .NET Program
I need to intercept when the system tries to access to a file, and do something before it happens.
7
votes
8answers
17k views
How do i resolve EXC_BAD_ACCESS errors encountered in iphone development
I'm trying to do a simple thing; read an image from the internet, save it to the app's documents directory on the iphone, and read it back from that file so that i can do other things with it later. ...
5
votes
2answers
1k views
How do I restrict access to files with specific extensions in ASP.NET?
I have in my web application an ADO.NET Entity-Framework *.edmx file.
When I browse in the browser (when the application is running) to an edmx file, it doesn't show the error page like when browsing ...
4
votes
3answers
203 views
Check if I can write a file to a directory or not with Python
I need to check if I can write a file to a directory that user point to with Python.
Is there an way to check it in advance? I may be using try .. catch for this purpose, but I expect something ...
4
votes
2answers
664 views
How to check if a file is in use?
Is there any way to first test if a file is in use before attempting to open it for reading? For example, this block of code will throw an exception if the file is still being written to or is ...
4
votes
2answers
3k views
C# Application can't read/write to files created by administrator when run in limited user account XP
I have an application that is useable by all users (admin or limited) in .NET (C# specifically).
When the application first launches - it creates a few files that it needs in the C:\Documents and ...
3
votes
6answers
2k views
UnauthorizedAccessException on newly created files
I have an application that is looking through some files for old data. In order to make sure we don't corrupt good projects, I'm copying the files to a temporary location. Some of the directories I'm ...
3
votes
3answers
4k views
Exclusive File access to logfile with VBScript and Filesystemobject
Need help with this one.
I have a VBS script that currently writes to a logfile. This script can be kicked off my multiple simultaneous processes so now I'm worried about concurreny.
I'm currently ...
2
votes
2answers
55 views
Correct way of checking a directory is available for writing
I recently added the use of GetTempPath to the application. During code review it was highlighted that the description of GetTempPath contains the information:
The application should verify the ...
2
votes
5answers
93 views
Check if another program has a file open
After doing tons of research and nor being able to find a solution to my problem i decided to post here on stackoverflow.
Well my problem is kind of unusual so I guess that's why I wasn't able to ...
2
votes
1answer
240 views
How do I access a file inside an OSGi bundle?
I am new to OSGi and created an OSGi-bundle which I run in the Apache Felix OSGi-container.
There is a file resource contained in the bundle, which I need to pass to a method as a java.io.File. To ...
2
votes
3answers
292 views
C# - Windows 7 - Create file in
Basically, I have an application that is installed on the users computers.
The users are on Windows 7.
The users are NOT given admin access.
The application, however, needs to be able to save files ...
2
votes
2answers
616 views
Java - Access file with user authentication
I have a server where I work with a database and files using a java app.
When I start my app I give a report regarding file access to the server using:
public static boolean folderExists(String ...
2
votes
1answer
141 views
Can't delete a service executable after uninstalling it
I'm uninstalling a service like this:
using (AssemblyInstaller installer = new AssemblyInstaller(serviceFileName, new String[] { }))
{
installer.UseNewContext = true;
...
2
votes
7answers
460 views
How do I create a file AND any folders, if the folders don't exist?
imagine i wish to create (or overwrite) the following file :- C:\Temp\Bar\Foo\Test.txt
Using the File.Create(..) method, this can do it.
BUT, if i don't have either one of the following folders ...
2
votes
2answers
133 views
How to access files in interior of an iPhone App?
I need in a iPhone app to access files that the app is build with(.plist etc). There's an hardcoded way to do this:
NSString *appDir = [[[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ...
2
votes
3answers
216 views
How do I lock access to a file when a user has it open?
I'm writing a C#.NET program which uses XmlSerializer to serialize and deserialize the project the current user is working on to and from an XML file. This is working fine, but I'm trying to figure ...
2
votes
5answers
326 views
File access, unit testing, dependency injection
I've recently asked a question regarding best ways of separating business logic from data access to make application testable (here). Thanks to Jeff Sternal, I've created interface for the data access ...
2
votes
3answers
343 views
Is there any reason to open a file with shared-write access?
I've always opened my files two ways -- either read access and shared-read, or read/write access and no sharing.
To me it seems that allowing shared-write could always result in unexpected things ...
2
votes
2answers
1k views
What is the difference between file and random access file?
what is the difference between file and random access file?
2
votes
3answers
925 views
How do I put a File (Excel) online (Apache Server) with Password Protection but with the Option for Users to alter the File and save the changes?
I have to put an excel file online on a web server (Apache) with some basic password protection (basic http auth). User, however, should be able to open the file from within excel and save their ...
1
vote
3answers
68 views
How should multiple processes on different Windows PCs use concurrently a file, stored in a shared directory?
Problem:
I have multiple instances of the same C# application running on different PCs (OS: Windows XP, Windows 7) in the same LAN. I have to share some configuration data among them. Each process ...
1
vote
3answers
58 views
Prevent directory listing and files for specific user
I have a folder (/files) and I have tons of files there that users can download. I want users to be able to download their files only and no be able to see others people file.
For example:
User A ...
1
vote
0answers
173 views
Open local file or directory in Windows Explorer from web-application in IE9 (Intranet)
We have built an intranet web-application (that is only used inside the company - so security issues do not matter!). We have several situations, where we have a link in a web-application ...
1
vote
2answers
101 views
Accessing a file from multiple activities.
What is the best way to make a file i've created in one activity (say Filewriter.java) to be available(for data manipulation) to all other activities in my app? I've made sure to use the same filename ...
1
vote
2answers
63 views
Locking files when sharing a working copy with SVN
I know that this is not the suggested way of doing things with SVN, but I would like not to change our current way of working with our classic ASP application.
Everything is centralized on a single ...
1
vote
2answers
260 views
File.Copy method makes file inaccessible
I am struggling with this for some time now. I can not access a file after I call File.Copy method. Here is what I tried:
File.Copy(sourceFile, destinationFile, true);
FileStream fs = ...
1
vote
3answers
138 views
htaccess - prevent people from accessing specific files directly
I am loading specific files through ajax, but how do I actually prevent people from accessing these files directly?
BTW, all these specific files are located in: /ajax/ directory
Would that only ...
1
vote
1answer
42 views
Can you determine who read the contents of a folder in linux?
I have a folder that I own, but also has read permissions for the entire group. I would like to know who read/copied the contents and when. Is it possible to do this with a script or otherwise?
1
vote
1answer
288 views
Retrieve Local Tomcat Path for File Access
Is there a way to retrieve the Tomcat local GWT directory in order to save a file?
In order to retrieve a file it's
new File(getClass().getResource(nameOfAFile).getPath());
Therefore how would I ...
1
vote
3answers
296 views
Access to “Program Files” folder needed
I ran into this quite often stated problem but even after looking up nearly every scource I didn’t get an aswer. Problem is as follows:
I wrote a little updater tool that connects to a server to ...
1
vote
3answers
1k views
Joomla template parameters and params.ini - file becomes unwritable after save
I am using wamp on Win XP SP3 and creating a Joomla template with changeable parameters.
initially the message is
The parameter file \templates\ssc_2010\params.ini is
writable!
once I make ...
1
vote
2answers
120 views
Read file as its being uploaded
By default you cannot access a file that is uploaded until it has been fully transferred to the server.
What is the best way to get round this and be able to access the 'byte stream' as the file ...
1
vote
1answer
250 views
Restrict file access from PHP -> Java Applet
I'm writing a portal in PHP that allows users to upload DICOM images, and allow users of the same group to view those DICOM images through a Java Applet. The html code to display images through the ...
1
vote
3answers
335 views
Help securing files access with htaccess and php?
I'm working on a site that allows users to purchase digital content and have implemented a method that attempts to serve secure downloads.
I'm using CodeIgniter to force downloads like this:
$file = ...
1
vote
1answer
342 views
How to use Wordpress' http.php in external projects?
Answer : Implemented using Curl...
$file = "http://abc.com/data//output.txt";
$ch = curl_init($file);
$fp = @fopen("out.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, ...
1
vote
2answers
114 views
Python Creating Unwanted Folder in Directory
Python is creating a folder in my directory every time I call this method. The method is in one of my Django applications that requires access to the server's local area.
def filepath(filename, ...
1
vote
5answers
777 views
How to check if a file has access denied and how to give rights(777) to a file in php?
I am working in php on ubuntu. When I use any image on web page which has denied access, there is warning on page. I want to check it before displaying and if it does not have rights to open then give ...
1
vote
1answer
449 views
PHP code to restrict member access by permissions
I am building a website in PHP & mySQL. It has frontend and backend capabilities. Only admin can enter the backend by means of username and password. Now if the admin wants to add other sub-admins ...
1
vote
11answers
535 views
How to protect a file in Windows
Update 3: the restrict access, using the security tab works now. (that's manually)
now looking to do it programatically (using Visual C#) and also how to access a file using administrator account in a ...
1
vote
5answers
893 views
Direct file access in delphi
my application opens files does transformations and saves the data out to another file..or possible the same file.. the file size changes but i dont know how big or small its gona be untill i see the ...
1
vote
4answers
8k views
Howto synchronize file access in a shared folder using Java (OR: ReadWriteLock on network level)
I have multiple applications running in one virtual machine. I have multiple virtual machines running on one server. And I have multiple servers. They all share a file using a shared folder on linux. ...
0
votes
1answer
23 views
Is it possible to access files beyond WEB-INF folder in dev mode of GAE (java.security.AccessControlException: access denied)?
Is it possible to access files beyond WEB-INF folder in Google App Engine's development server ? Maybe I can somehow force GAE dev server to do not block external connections/file access ?
I'm trying ...
0
votes
0answers
21 views
Possible to monitor file access in a virtualized windows guest?
I'd like to know more about the internals of Windows (first XP, then 7), how it works, and especially how it's installation process works.
For this, my ideal approach would be to virtualize it, and ...
0
votes
0answers
61 views
SMBException in SMB file access, while UNC access is successful
my code try to verify if file exists on remote machine with SMB path, and get SMBException (network unreachable).
but when I take the SMB path and convert it to UNC path I reach the file.
I set the ...
0
votes
2answers
83 views
how can i access a file/folder over network through XP_CMDSHELL in sql server 2008?
I am trying to access a folder/directory using 'EXEC MASTER..XP_CMDSHELL' it works for the local file/folder, how ever it can not access the folder over network.
EXEC MASTER..XP_CMDSHELL 'c:\Images' ...