The file-access tag has no wiki summary.
0
votes
0answers
14 views
Restrict file to file access by directory
Recently been working on a new project which lets users create their own turnkey blog/forum/.. any of the available scripts. However, I ran accross a problem: each user gets their own folder for the ...
1
vote
1answer
50 views
Python get last reading time of a file [duplicate]
I'm looking for a solution to get the time a file was read at last. The file will be not modified or created just opened in reading mode. This works but only for writing in a file. If I open the file ...
1
vote
2answers
117 views
Cannot delete temporary file after File.Copy in C#
After copying a file to a temporary directory, I am unable to delete the copy because of an UnauthorizedAccessException exception. The idea here is to get a copy of the file, zip it and then delete ...
0
votes
2answers
35 views
File object in WinJS - how to retreive the containing folder
I have got a app with the getItemsAsync()-method returning a file-object for a picture chosen by the user with a file picker. Now I would like to get the folder-object of the folder which contains the ...
0
votes
2answers
48 views
Read/write to file with java for personal program
so I'm assuming I'm not the only one who's asked this but I have a specific matter I want resolved. Before I start let me just say this is NOT a homework assignment, this is for my convenience and ...
0
votes
0answers
46 views
Accessing Music Library with TagLib
I am building Windows Store App. I want to access mp3 files in my Music Library. This is my code
StorageFolder musicFolder = KnownFolders.MusicLibrary;
IReadOnlyList<StorageFile> fileList = ...
0
votes
1answer
19 views
How to protect admin javascript file?
I have a javascript file for admin page only in my site. How to do that, the file was available only for admins. Checking roles performed by cookies. Maybe some sort of a check on the server? Server ...
0
votes
1answer
57 views
Trigger.io: File Access in Android 4+ Bug
We are using File Access in trigger.io to get some local files in Android Media Gallery, but when we now pick the image, it seems it always throw a warning Exif data not included in ...
0
votes
2answers
65 views
Saving Objects to File. Custom methods to add/remove Object
I want to be able to save the objects created in my program to a file. I have watched a few tutorials on ObjectOutputStream, but the problem is, they only show how to save a specific object created in ...
2
votes
2answers
50 views
C# file access error
I have the following C# code :
string selectedFile = "D:\..\IMGP2695.JPG";
MyImage myImage = new MyImage();
Image image = Image.FromFile(selectedFile);
string thumbnail_name = CreateThumbnail(image);
...
0
votes
0answers
123 views
Upload for Android Download Manager
I wish to use Download Manager provided by Android. The part of the Android is working correct! I have tested it with the following link: http://commonsware.com/misc/test.mp4
But I would like to use ...
0
votes
1answer
95 views
can't save style.css in chrome developer tools
I've made all these little CSS modifications to my blog with Google Chrome's built in Developers tools to improve a +WordPress blog.
I'm using the context-sensitive Save As command on the revised ...
0
votes
1answer
108 views
Android getDir() with MODE_WORLD_WRITEABLE does not work
I want to be able to edit a file stored in the app internal memory accessible via Context.getDir() with any available external text editor by launching Intent.ACTION_VIEW with type "text/plain" and ...
0
votes
1answer
44 views
How do I allow other applications to open a file I need to hold open?
I have a C++ windows application which opens a file (and keeps it open) as follows:
FILE* fp = NULL;
errno_t result = _wfopen_s(&fp, L"MyRawData.dat", L"wb");
This works fine but when I try and ...
1
vote
0answers
296 views
Android: 4 SD card permission
I have application posted on play market , i always tested it on android 2.3 emulator , on phone SG s plus - cyanogen mod 9 android 4.0.4 , on S ace with 2.3.6 , and it worked fine , but when my ...
8
votes
3answers
224 views
Checking if a file is in use without try catch?
Is there a way I can check if a file is in use or is not opened by other process without just trying to open it and catching an exception? Is there no service method to test such a thing?
0
votes
1answer
145 views
Azure File Access / Accessing custom configuration files in windows azure cloud service
I have found a number of articles on stackoverflow which I have tried to use to answer a question I have about file access in a windows azure cloud service.
My application has a number of xml files ...
0
votes
1answer
173 views
unable to access files on a different physical drive from asp.net website
My website is published under c:\inetpub\wwwroot folder and I have some large text files on D: drive that I need to access. Let's say the exact location is D:\Test\test.txt. When my website runs it ...
0
votes
1answer
68 views
Remove access to file and folder in my asp-classic website
I have an classic asp website and the users can upload some file that are save in a subfolder of my website.
I've just noticed that if I browse to the folder I see the list of my files. ...
0
votes
1answer
89 views
LogParser Lizard
I am using LogParser Lizard to parse Log4Net files and when I am trying to do a query such as: SELECT * FROM "C:\Logs*.log". I get an error saying "The process cannot access the file [...] because it ...
0
votes
3answers
174 views
FileStream.close() does not free file for other processes
I have Following Code in a Page_Load called function. When the Page is loaded the first time after starting Visual Studio, everything works out fine.
But any other opening call to the File after that ...
0
votes
0answers
40 views
How to get real file offset in NAND by file name?
Using linux, I can use raw access to NAND or access to files through filesystem. So, when I need to know, where my file is really located in NAND, what should I do? I cannot found any utilities ...
0
votes
2answers
169 views
I need help understanding PowerShell security and file access issues
I'm working with PowerShell, running a script (from my console) that includes this line:
$inpath = "C:\users\xxxxx\path\foo\bar"
and I keep getting this error:
Get-Content : Access to the path ...
0
votes
2answers
219 views
Access Windows shared network files from Android app
i'm trying to access a shared file from my app, e.g //172.24.9.13/c/2012xp.mdb By doing:
new File("//172.24.9.13/c/2012xp.mdb");
it doesn't work.
I found the jcifs library, creating
new ...
-1
votes
1answer
80 views
how to get a string from a java file by using only start and end position?
My .java file consists of a series of codes and each line is of variable size.
The .java file is shown below:
public class MyC{
public void MyMethod()
{
System.out.println("My method ...
0
votes
1answer
959 views
System.ComponentModel.Win32Exception when starting process - file not found, but file exists
I am trying to create a manager for my autostarts. It should read an XML file and then start my programs with a custom delay. For example:
<startup id="0">
<name>Realtek Audio ...
1
vote
1answer
43 views
How can I use a file in a Windows Store App Testproject?
I am getting my feet wet with making a Windows Store application. It will convert a text based file to a class. For this the application needs file access. That I can accomplish. but I created a ...
0
votes
2answers
190 views
XmlSerializer - File access Exception
I have simple page, that loads XML from filesystem, fills textboxes, these can be updated and saved. For serializing and deserializing I am using these methods:
private static readonly object ...
2
votes
5answers
94 views
Forbid use of PHP file by unwanted Client-side requests
I've a PHP document, let's say jsonarray.php.
This file returns the json_encode of an associative array when some parameters are given.
I need to forbid an unwanted user to access and use this file ...
0
votes
1answer
92 views
How to manipulate file thread-safely in Java?
Every time a page is requested on my website, I log some details with a service call like this:
logService.logPageRequest(session, request, contentId);
This service call makes use of a static ...
0
votes
1answer
58 views
Limit file viewing based on user count
Background
Due to licencing on our Medical PDF Documents, our Doctors are restricted to only have 2-3 of them viewing a PDF document at once.
While we know we could just make a copy of everything and ...
1
vote
1answer
158 views
Apache2: File Access (Mod Ruby)
I have a VirtualHost in my Apache2:
<VirtualHost *:80>
ServerName 127.0.0.1
ServerAlias localhost
DocumentRoot /var/www/rocketruby/public
<Directory ...
1
vote
0answers
88 views
UnauthorizedAccessException - Server's access denied to file directory
I'm having an UnauthorizedAccessException error, while the application on the server is trying to read a XML document on other machine.
The code:
private void generateNewXml()
{
string ...
0
votes
2answers
2k views
Windows 8 App and access to file system
I'm at the beginning of my project and I wonder which technology I should use.
In my little research I found WinRT API being kind of pleasant and I really like tile grid concept in UI.
The only ...
0
votes
2answers
217 views
How to access file system in os by IE 7, and 8 browser ,without using ActiveXObject?
How to create a file or list the files in the folder in java script in IE7 and IE8.In general to access the file system in OS , java script uses ActiveXObject. But I need to access the file system not ...
0
votes
1answer
162 views
Storing and displaying image files in grails application in cloud foundry
I have an grails application, which allows users to upload image files and these images can be displayed. The application actually only stores file path in database and saves the image files in file ...
1
vote
1answer
530 views
How do I access assets inside a APK file using ActionScript 3? (Adobe AIR)
I've made a program using Flash Pro CS6. Now, using Adobe AIR, I export it to "AIR for Android". In the settings, under "included files" I've added a folder "images" to be packaged inside the ...
0
votes
1answer
124 views
How can I access a .jls file's contents (JPEG-LS compressed) or its bitstream so that I may further compress it using C#?
JPEG-LS is a lossless image compression algorithm for continuous-tone images. Images compressed using JPEG-LS results to a file with an extension of ".jls".
How may I access this file using C#, or ...
0
votes
4answers
881 views
How do I access a file in a project folder - Windows 8 store app?
I've got a Windows 8 store app where I've created an "App_Data" folder. I added an sqlite database file and now I'm trying to get the file path to create a connection.
0
votes
1answer
382 views
IIS Directory browsing diable file access directly
I have a website hosted in IIS with directory browsing disabled. The website is developed in ASP.Net, MySql and C#.
For e.g., If i type www.mysite.com/LoremIpsums/ then it shows 403 error. However if ...
0
votes
2answers
183 views
c++: more small files or fewer large files? [closed]
I have written a c++ prog to query a 100 GB dictionary. I have split the dictionary into n number of files of equal size. All split-files are placed in the same dir. The dictionary is fully indexed, ...
0
votes
1answer
474 views
Windows 2003 server restrict file access permission to allow only one user
We have a legacy DOS app running on our Windows 2003 server. It frequently uses one file, and is very sensitive (ie will break) if the file is "touched" by another process. For example, if the file is ...
0
votes
1answer
192 views
Unable to copy .ftpquota
Trying to make a backup using FileZilla. All files copied but for .ftpquota got this error,
Command: RETR .ftpquota
Response: 550 Can't open .ftpquota: Permission denied
Error: Critical file ...
2
votes
1answer
167 views
PHP simultaneous file access
Ok, ok .. so right now I'm freaking out.
index1.php
<?
function write_file($filepath,$filecontent) {
$openedfile = fopen($filepath,"w+"); //replace with $openedfile = fopen($filepath,"a"); ...
2
votes
2answers
228 views
C++, what happens if file moved while being read?
How does C++ behave if it is reading a file (say a csv file with 20,000 lines) and halfway through the read, another process deletes the file (lets say it is an ifstream).
Do I get a seg fault, or ...
0
votes
0answers
83 views
How to access data from .KDX file
I am facing issue in accessing file with extension .kdx.
I only know that this files contains data and i want to access those data in my asp.net application.
Can anyone please let me know what is ...
1
vote
1answer
329 views
Getting file permissions across the network
I have a situation where I need to confirm that I am able to get write access to a particular folder on the network. So firstly I check is the user or one of the groups it is part of (domain groups) ...
0
votes
0answers
207 views
Application, installed using setup project cannot take access to folder
I have .net application, when it is compiled everything is ok. It saves an image file to its folder. When I use Ctrl+F5 in Visual Stuio, or when I copy exe-file to some folder, it is ok. But, when I ...
0
votes
1answer
57 views
Block access to files [duplicate]
Possible Duplicate:
Preventing direct access to php files
I want to block direct access to certain files so that they can only be used by PHP via include or require.
What I'm doing on the ...
0
votes
2answers
149 views
Java applet can't access non-public file on same webserver
I'm creating a Java Applet for a customer, and I've run into a problem where I need to read/write to a file on their web server, but that file can not, under any circumstances, be publicly accessible. ...




