active questions tagged filesystems - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:54:37Z http://stackoverflow.com/feeds/tag/filesystems http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1892056/fat-filesystem-analysis-tool 0 FAT filesystem analysis tool [closed] Andy 2009-12-12T02:30:08Z 2009-12-12T02:30:08Z <p>I have a dump a FAT file system.</p> <p>Is there a windows tool I can use to analyse it, including:</p> <ol> <li>Provide basic information (sector size etc.)</li> <li>Validate the file system, basic corruption checking</li> <li>Allow the files and directory structure to be viewed and possibly edited (i.e mounting as a windows partition)</li> </ol> <p>Thanks, Andy</p> http://stackoverflow.com/questions/1884571/is-it-possible-to-make-a-process-on-a-server-act-like-a-filesystem-to-interact-wi 2 Is it possible to make a process on a server act like a filesystem to interact with FTP? unknown (google) 2009-12-10T22:36:40Z 2009-12-11T05:22:19Z <p>What I want to do is run a process on my server that acts like an FTP server. So people can upload things through "FTP" but really it's a program I'm running that lets me put information about that file in a database and not really put the files where they say they're going.</p> <p>E.g. Website Templates. A user of my service wants to put up the template they are working on for a client of theirs, but wants to upload it through the FTP in their text editor. But I want to store that templates data in a database, process it to find out things about it then store it where I want to but still display it as being where the person put it for them.</p> <p>Probably going to be very difficult but does anyone know if it's possible?</p> http://stackoverflow.com/questions/446358/storing-a-large-number-of-images 15 Storing a large number of images Saiyine 2009-01-15T10:57:43Z 2009-12-10T12:26:08Z <p>I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands.</p> <p>At the database I'll point to the url of the image, but here's the problem: I know is impractical to have all of them sitting at the same directory in the server as it would slow access to a crawl, so, how would you store all of them? Some kind of tree based on the name of the jpeg/png?</p> <p>What rules to partition the images would you recommend me?</p> <p>(It will focused for using in cheapo dot coms, so no mangling with the server is possible)</p> http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-python 4 How do I determine an open file's size in Python? Jason Baker 2009-12-08T14:33:47Z 2009-12-09T17:36:47Z <p>There's a file that I would like to make sure does not grow larger than 2 GB (as it must run on a system that uses ext 2). What's a good way to check a file's size bearing in mind that I will be writing to this file in between checks? In particular, do I need to worry about buffered, unflushed changes that haven't been written to disk yet?</p> http://stackoverflow.com/questions/1783991/determining-cache-misses-for-various-filesystems 3 Determining cache misses for various filesystems vrish88 2009-11-23T15:47:40Z 2009-12-09T10:41:07Z <p>Hello, I've got a project for school where I have to find out how many cache misses a filesystem will have under heavy and light loads and on a multiple processor machine. After discussing this with my professor, I came up with a basic plan of execution:</p> <ol> <li>Create a program which will bog down the filesystem and fill up the buffer cache.</li> <li>Use a system benchmarking tool to record the number of cache misses.</li> <li>Rinse and repeat with a new conditions.</li> </ol> <p>But being new to operating system design, I am unsure of how to proceed. So here are some points where I need some <a href="http://www.youtube.com/watch?v=Ra9rFfXFkK8" rel="nofollow">help</a>:</p> <ol> <li>What actions would an ideal program perform to fill up the buffer cache? Currently, the program that I've written reads and writes to several different files, x amount of times.</li> <li>What tools are there that record the number of cache misses? I have looked into oprofile but I don't think it monitors the filesystem's buffer cache. But I have found this <a href="http://www.raid.com/benchmarks.html" rel="nofollow">list</a> which looks promising.</li> <li>Will other running processes affect these benchmarks?</li> </ol> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1867563/is-it-a-good-idea-to-let-files-grow-above-2gb-in-ext2 0 Is it a good idea to let files grow above 2GB in ext2? [closed] Jason Baker 2009-12-08T15:05:24Z 2009-12-08T15:05:24Z <p>I'm working on a program that needs to run on a Linux distro with an ext2 filesystem. This program will write files which may become very large. I notice that ext2 has a maximum file size of 16GB to 64GB. However, one thing on wikipedia's page that scared me somewhat is the following line:</p> <blockquote> <p>There are also many userspace programs that can't handle files larger than 2 GB.</p> </blockquote> <p>...when it's talking about ext2's limitations. Does this mean that I should be careful about letting a file grow larger than 2 GB?</p> http://stackoverflow.com/questions/1866454/unique-file-identifier-in-windows 5 Unique file identifier in windows Ash 2009-12-08T11:46:49Z 2009-12-08T13:25:00Z <p>Is there are way to uniquely identify a file (and possibly directories) for the lifetime of the file regardless of moves, renames and content modifications? (Windows 2000 and later). Making a copy of a file should give the copy it's own unique identifier.</p> <p>My application associates various meta-data with individual files. If files are modified, renamed or moved it would be useful to be able to automatically detect and update file associations.</p> <p>FileSystemWatcher can provide events that inform of these sorts of changes, however it uses a memory buffer that can be easily filled (and events lost) if many file system events occur quickly.</p> <p>A hash is no use because the content of the file can change, and so the hash will change.</p> <p>I had thought of using the file creation date, however there are a few situations where this will not be unique (ie. when multiple files are copied).</p> <p>I've also heard of a file SID (security ID?) in NTFS, but I'm not sure if this would do what I'm looking for.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux 0 /proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux) Drakosha 2009-11-25T19:54:09Z 2009-12-08T12:23:49Z <p>I'm trying to use async io on linux. As far as i know there're 3 options:</p> <ul> <li>kernel calls (io_submit and friends)</li> <li>libRT - uses threads in user space</li> <li>libRTKAIO - wrapper of kernel calls which does not use threads</li> </ul> <p>I'm using the last option, and i see, that in my unit test that runs a lot of async io requests in multiple threads, /proc/sys/fs/aio-nr is never higher than 1024. I wonder where lays such limitation.</p> <p>I've set /proc/sys/fs/aio-max-nr to 16M, so it's not an issue.</p> <p>A related question (also mine) <a href="http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long">http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long</a></p> http://stackoverflow.com/questions/1734145/is-this-specific-path-concatenation-in-perl-code-exploitable 1 Is this specific path concatenation in Perl code exploitable? knorv 2009-11-14T12:45:30Z 2009-12-07T17:36:43Z <p>Assume that an attacker controls the variable <code>$untrusted_user_supplied_path </code>. Is the following Perl code exploitable?</p> <pre><code>my $untrusted_user_supplied_path = ... if ($untrusted_user_supplied_path =~ /\.\./) { die("Tries to escape homedir."); } my $base_path = "/home/username/"; my $full_path = "${base_path}${untrusted_user_supplied_path}"; if (-e $full_path) { open(FILE, "&lt;", $full_path) || die("File not accessible."); while (&lt;FILE&gt;) { # present the content to the user } close(FILE); } </code></pre> <p>The code is defined as exploitable if an attacker can choose a value of <code>$untrusted_user_supplied_path</code> such that he/she can read a file that resides in a directory that is not a sub-directory of <code>$base_path</code> (say <code>/etc/passwd</code>)?</p> <p>You can assume that the code is running under Linux. Furthermore, you can assume that no <i>additional</i> flaws are introduced in the code which presents the file to the user.</p> <p>Please note that the question is about whether or not the code is exploitable, not how to make the code more secure. There are numerous ways to make the code more secure (think <code>chroot</code>, etc.) but that is beyond the scope of this question. Just state in your answer if you believe that the code is exploitable or not. And of course, please provide supporting argumentation.</p> http://stackoverflow.com/questions/1764131/why-doesnt-find-print0-work-in-cygwin-under-vista 0 Why doesn't "find -print0" work in Cygwin under Vista? [closed] Alex R 2009-11-19T15:33:55Z 2009-12-07T11:00:30Z <p>I'm writing a simple shell script:</p> <pre>find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5</pre> In Cygwin under Vista, it just sits there and nothing happens. It works fine on Linux. What could be the problem?? fyi: <pre> $ find --version find (GNU findutils) 4.4.0 Copyright (C) 2007 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Eric B. Decker, James Youngman, and Kevin Dalley. Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b Features enabled: O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS() CBO(level=0) </pre> http://stackoverflow.com/questions/716712/very-slow-open-six-seconds-plus-on-full-ufs-just-starting-to-undergo-a-mass-d 0 Very slow open() (six seconds plus) on full UFS just starting to undergo a mass delete? Blank Xavier 2009-04-04T07:25:27Z 2009-12-06T06:00:00Z <p>We have a UFS partition on solaris.</p> <p>The volume becomes full. We're still trying to write to it - and naturally open() returns -1 immediately.</p> <p>When a cronjob fires up which does a mass delete, it looks like open() doesn't return in a timely manner - it's taking at least six seconds, because that's how long before the watchdog kills the process.</p> <p>Now, the obvious thought is that the deletes are keeping the file system busy and open() just takes forever...but is there any concrete knowledge out there about this behaviour?</p> http://stackoverflow.com/questions/1839148/blackberry-location-directory-on-device-to-save-file-from-application 0 BlackBerry - Location/directory on device to save file from application Bohemian 2009-12-03T10:46:21Z 2009-12-05T09:49:14Z <p>My program saves a file on the device during runtime and reads/writes data from it during runtime. Currently it gets saved in the SDCard. I want to know if saving it in device flash memory would be better than removable media. Does device allows us to write something in its internal memory? Suggestions/Ideas? Thanks</p> http://stackoverflow.com/questions/1846882/openbasedir-restriction-in-effect-file-is-not-within-the-allowed-paths 0 open_basedir restriction in effect. File(/) is not within the allowed path(s): Webnet 2009-12-04T13:17:27Z 2009-12-04T15:44:59Z <p>I'm getting this error on an avatar upload on my site. I've never gotten it before and nothing was changed recently for me to begin getting this error...</p> <pre><code>Warning: is_writable() [function.is-writable]: open_basedir restriction in effect. File(/) is not within the allowed path(s): </code></pre> http://stackoverflow.com/questions/862192/file-system-testing-tools 2 File system testing tools KIV 2009-05-14T08:27:15Z 2009-12-04T15:07:44Z <p>Hello,</p> <p>We are developing file system filters and we need to automate the testing on all platforms we are targeting (Windows, OS X, Linux). What tools would you recommend that will check if a particular mounted file system behaves properly.</p> <p>Here the word "properly" probably needs some clarification: Since we are developing filters (not a new file system) the behavior should be the same as the underlying file system (NTFS, HFS+, XFS). So the tools need to check not only basic operations (open/read/write/close/dir) but also OS and file system specific features like resource forks on HFS, streams on NTFS, security attributes, etc.</p> <p>Thanks in advance, KIV </p> http://stackoverflow.com/questions/860576/encrypted-filesystems-and-the-linux-buffer-cache 1 Encrypted filesystems and the Linux buffer cache Brad B 2009-05-13T21:41:20Z 2009-12-04T15:06:01Z <p>I currently use Berkeley DBs fronted by a Java server for a high-performance disk-backed cache. Provided you warm it up before allowing it to face live traffic, your update rate is low, and your working set fits in memory, the Linux buffer cache does an excellent job. It's measurably faster than memcache, in part because you don't need to context switch to the memcached and back on read. We're very happy with the performance.</p> <p>We're going to be adding some data to the cache that we're not comfortable leaving on disk in plain text. We've measured and are unhappy with the performance of decrypting during request processing, so we're looking for solutions that decrypt only when the data is loaded from disk and then keep it available in memory.</p> <p>Before building something that does this, I wanted to find out if we can simply slide in an encrypted filesystem and continue to rely on the OS to manage the cache for us. I haven't found any documentation that tells me at what layer the decryption is done. </p> <p>So my question is: Can anyone tell me, for any particular Linux encrypted FS, whether the (en|de)cryption is done below the buffer cache (and therefore the cache contains plaintext) or above (and the cache contains ciphertext)?</p> http://stackoverflow.com/questions/1845388/best-filesystem-for-use-with-mutilple-os 0 best filesystem for use with mutilple os [closed] alexxer 2009-12-04T07:25:24Z 2009-12-04T07:35:42Z <p>what's the best file system to use with windows, osx, and linux that is not fat32. I need a file system that can share large video files with good performance </p> http://stackoverflow.com/questions/203/best-filesystem-to-use-for-desktop-linux 9 Best Filesystem to use for Desktop Linux? contagious 2008-08-01T19:45:42Z 2009-12-03T17:58:24Z <p>I'm going to be building a fancy new desktop soon, and I want to experiment with file systems. I know that ext3 is the most common for linux, but what about ext4, or zfs? Are their any pros or cons to certain ones? </p> <p>I won't be doing anything spectacularly off the wall, just using it as my main box. It is a good possibility that it will double as my web server, though.</p> http://stackoverflow.com/questions/1831149/objective-type-questions-for-java-i-o -3 objective type questions for Java I/O [closed] stanley 2009-12-02T07:11:33Z 2009-12-02T07:11:33Z <p>I need objective type questions for Java I/O, can anyone help?</p> http://stackoverflow.com/questions/1809725/ntfs-alternate-data-streams 0 NTFS alternate data streams MasterPeter 2009-11-27T16:47:12Z 2009-11-30T10:43:17Z <p>Today I have seen this weird magic NTFS system supports: each file can have multiple data streams. Basically one could have a file <code>a.txt</code> of 0b size but there can be any number of bytes hidden in a separate data stream for that file. This is strictly NTFS related magic and I don't see any noble reason for having these streams around. You can look for NTFS streams with the help of the <code>streams</code> utility from Sysinternals. This will show you that basically every one of those nasty <code>thumbs.db</code> files comes with an extra data stream.</p> <p>Okay, now I have seen this magic work on a Windows NT4 system, streams added to files, copied over, deleted (with the help of the aforementioned utility), but I am now trying this at home on my Win XP system, but although I can detect the existing streams, I can't display their contents, can't create new ones, or very much anything when I use the <code>filename:streamname</code> syntax.</p> <p>I get this error:</p> <blockquote> <p>The filename, directory name, or volume label syntax is incorrect.</p> </blockquote> <p>Example: Output from the streams utility:</p> <pre><code>c:\DOWNLOADS&gt;streams.exe -s . Streams v1.56 - Enumerate alternate NTFS data streams Copyright (C) 1999-2007 Mark Russinovich Sysinternals - www.sysinternals.com c:\DOWNLOADS\1013.pdf: :Zone.Identifier:$DATA 46 c:\DOWNLOADS&gt;type 1013.pdf:Zone.Identifier The filename, directory name, or volume label syntax is incorrect. </code></pre> <p>Why can't I display the contents of the alternate data stream?</p> <p>Looking at the Microsoft documentation on "<a href="http://support.microsoft.com/kb/105763/en-us?FR=1&amp;PA=1&amp;SD=HSCH" rel="nofollow">How To Use NTFS Alternate Data Streams</a>", I can see that this applies to my operating system, although they do mention that these streams will not be supported in the future. Anyone can shed any light on this?</p> http://stackoverflow.com/questions/1816339/how-to-copy-locked-files-device-or-resource-busy-error-on-windows-xp-without-a 1 how to copy locked files ( Device or resource busy error) on windows xp without admin permissions Hemant 2009-11-29T18:35:45Z 2009-11-29T19:03:15Z <p>Is there is any way I can copy locked files on windows xp machine without having admin rights? I used unloker tool its great but needs admin rights to install and run. how it could be done in some programming language like perl/shell/c c++ etc. or if there exists some workaround for this.</p> http://stackoverflow.com/questions/1798411/file-system-regular-expression-search-tool 0 File system regular expression search tool Superfilin 2009-11-25T17:06:13Z 2009-11-29T06:44:08Z <p>What is the best tool to make complex (multi-line) regular expression file contents searches with good reporting capabilities? </p> <p>I need to make a report over large Java/JSP code base and I have to make some charts afterward.</p> <p>Eclipse is rather good at searches, but it does not provide good report of what is found. It just shows the tree of files, but I would like to see a table with columns corresponding to full match, each group, file name, file path, file date, may some version control information etc. Then I can transfer this table to Excel and make some graphs that I want.</p> <p>Is there some generic file system search tool that has such capabilities? Or maybe there is some Eclispe plugin that can give better reports (note that I'm stuck on eclipse 3.1.2)?</p> http://stackoverflow.com/questions/1354767/what-is-the-best-way-to-store-downloaded-files 0 What is the best way to store downloaded files? CS 2009-08-30T20:01:19Z 2009-11-28T07:00:03Z <p>Sorry for the bad title.</p> <p>I'm saving web pages. I currently use 1 XML file as an index. One element contains file created date (UTC), full URL (w. query string and what not). And the headers in a separate file with similar name but appended special extension.</p> <p>However, going at 40k (incl. header) files, the XML is now 3.5 MB. Recently I was still reading, adding new entry, save this XML file. But now I keep it in memory and save it every once in a while.</p> <p>When I request a page, the URL is looked up using XPath on the XML file, if there is an entry, the file path is returned.</p> <p>The directory structure is .\www.host.com/<em>randomFilename.randext</em></p> <p>So I am looking for a better way.</p> <p>Im thinking:</p> <ul> <li>One XML file per. domain (incl. subdomains). But I feel this might be a hassle.</li> <li>Using SVN. I just tested it, but I have no experience in large repositories. Executing svn add "<em>path to file</em>" for every download, and commit when I'm done.</li> <li>Create a custom file system, where I then can include everything I want, for ex. POST-data.</li> <li>Generating a filename from the URL and somehow flattening the querystring, but large querystrings might be rejected by the OS. And if I keep it with the headers, I still need to keep track of multiple files mapped to each different query string. Hassle. And I don't want it to execute too slow either.</li> </ul> <p>Multiple program instances will perform read/write operations, on different computers.</p> <p>If I follow the directory/file method, I could in theory add a layer between so it uses <a href="http://www.codeplex.com/DotNetZip" rel="nofollow">DotNetZip</a> on the fly. But then again, the query string.</p> <p>I'm just looking for direction or experience here.</p> <p>What I also want is the ability to keep history of these files, so the local file is not overwritten, and then I can pick which version (by date) I want. Thats why I tried SVN.</p> http://stackoverflow.com/questions/1065993/has-windows-7-fixed-the-255-character-file-path-limit 3 Has Windows 7 Fixed the 255 Character File Path Limit? The Matt 2009-06-30T20:52:00Z 2009-11-28T00:59:42Z <p>As I understand it, the limitation of 255 characters in a file path is a Windows limitation. What is the reasoning for this? If so, has this been resolved in Windows 7?</p> <p>In our continuous integration practices, we often have deeply nested project structures and it would be extremely useful to be able to go beyond 255 characters. Right now we are somewhat forced to structure our projects in such a way as to not hit this artificial ceiling.</p> http://stackoverflow.com/questions/269179/best-distributed-filesystem-for-commodity-linux-storage-farm 2 Best distributed filesystem for commodity linux storage farm Eric 2008-11-06T15:43:54Z 2009-11-27T16:26:10Z <p>I have a lot of spare intel linux servers laying around (hundreds) and want to use them for a distributed file system in a web hosting and file sharing environment. This isn't for a HPC application, so high performance isn't critical. The main requirement is high availability, if one server goes offline, the data stored on it's hard drives is still available from other nodes. It must run over TCP/IP and provide standard POSIX file permissions.</p> <p>I've looked at the following:</p> <ul> <li><p>Lustre (<a href="http://wiki.lustre.org/index.php?title=Main_Page" rel="nofollow">http://wiki.lustre.org/index.php?title=Main_Page</a>): Comes <em>really</em> close, but it doesn't provide redundancy for data on a node. You must make the data HA using RAID or DRBD. Supported by Sun and Open Source, so it should be around for a while</p></li> <li><p>gfarm (<a href="http://datafarm.apgrid.org/" rel="nofollow">http://datafarm.apgrid.org/</a>): Looks like it provides the redundancy but at the cost of complexity and maintainability. Not as well supported as Lustre.</p></li> </ul> <p>Does anyone have any experience with these or any other systems that might work?</p> http://stackoverflow.com/questions/1809582/mounting-minix-filesystem-on-ubuntu 0 mounting minix filesystem on ubuntu [closed] Manuel 2009-11-27T16:15:01Z 2009-11-27T16:20:42Z <p>How can I mount a Minix filesystem in Ubuntu? I'm trying to do </p> <pre><code>sudo mount -o loop,offset=1024 -t minix B30M biggy/ </code></pre> <p>and I get </p> <p>mount: wrong fs type, bad option, bad superblock on /dev/loop0, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so</p> <p>Thanks!</p> http://stackoverflow.com/questions/691024/is-there-a-way-to-get-the-filename-location-information-from-the-mft-of-an-ntfs-v 1 Is there a way to get the filename/location information from the MFT of an NTFS volume? Deepak Singh Rawat 2009-03-27T18:46:50Z 2009-11-27T08:29:31Z <p>I need to get the list of all the files on a drive. I am using a recursive solution. But it is taking a lot of time. I was wondering that, is it possible to get the names and location of all the files on a NTFS drive from it's Master File Table? I think it will be very fast. Any suggestions?</p> http://stackoverflow.com/questions/1525830/how-can-i-use-filesystem-functions-in-php-using-utf-8-strings 2 How can I use filesystem functions in PHP, using UTF-8 strings? Acacio Nerull 2009-10-06T14:10:44Z 2009-11-25T16:37:06Z <p>I can't use mkdir to create folders with UTF-8 characters.</p> <pre><code>&lt;?php $dir_name = "Depósito"; mkdir($dir_name ); ?&gt; </code></pre> <p>But, when I browse this folder in Windows Explorer, the folder name looks like this:</p> <pre><code>Depósito </code></pre> <p>What should I do?</p> http://stackoverflow.com/questions/1013117/ssd-as-inline-cache 0 SSD as inline cache Tim Rupe 2009-06-18T14:52:32Z 2009-11-25T16:00:04Z <p>This may be slightly off-topic for a strictly programming site, but I'm interested in starting a software project or contributing to an existing project that can do what I'm proposing.</p> <p>Now that SSD storage is becoming more popular, I am more interested in using one in my destop computer. Since they are very expensive per Gigabyte compared to standard drives, I must limit the size of the drive. I want to maximize the use, but can't place all of my data on it.</p> <p>What I would like to do is use the SSD as an invisible inline cache to the rest of my data without having to explicitly store data on it. As data is read from my normal drive, it is cached to the SSD. All subsequent access to these files will retrieve it from the SSD, and any changes will propagate down to the slower drive. The user would never see the SSD in their list of drives.</p> <p>In this way, the first time you access a file, it may be slightly slower than usual, but from that point on, it will be much faster. Obviously, after a while the SSD will fill up, and less frequently used files can be released to make room.</p> <p>Are there any filesystems out there that allow for something like this, or is it feasible have a low-level driver do the work between the OS and the filesystem?</p> http://stackoverflow.com/questions/1781936/an-xml-language-for-describing-file-attributes-of-a-directory-tree 2 An XML language for describing file attributes of a directory tree? Jim DeLaHunt 2009-11-23T09:14:44Z 2009-11-25T09:51:59Z <p>I have an application in mind which will record directory listings of a file system in text form. That is, it should say something like:</p> <pre><code>File name is: abc.txt Last modification date is: 2009-12-31T01:23 Read-only attribute is: True Hidden attribute is: False </code></pre> <p>The listings will persist for years in a long-term archive, so the language should be self-evident to an information archaeologist of the future. The language should be able to describe the most commonly-used file attributes of common PC platform file systems: NTFS, FAT, HFS+, ext2/3, etc. It should be able to handle non-Latin file names, different semantics for time stamps on different file systems, etc.</p> <p>Of course, the obvious choice of a language for structuring this data is some XML-based language. Can anyone point me to a language which already exists for describing hierarchical structures of file attributes and directory attributes, as in a file system? I'm hoping to benefit from the work those language designers did to get the semantics right, create the schema or DTD, work out the niggling details of whether something should be an XML element or attribute, etc.</p> <p>I've looked in the obvious places: <em><a href="http://xml.coverpages.com" rel="nofollow">http://xml.coverpages.com</a></em>, web search engines, the archives of <em>XML-L</em> and <em>comp.text.xml</em>, and here. I didn't find any traces of such languages. The search was complicated a bit because the search term "file attributes" gets lots of hits on the term attributes as used in XML. </p> <p>Please suggest languages I should investigate. It helps to have the name of the language, and a pointer to a URL where the language and its related tools, syntax definitions, etc. are described.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1657823/getting-executable-file-name-from-handle-in-windows-x64 0 Getting executable file name from handle in Windows x64 Andrea Nagar 2009-11-01T17:59:01Z 2009-11-24T02:00:04Z <p>I have a c# application that is compiled as x86 so it runs as a 32bit application on Windows 7 x64. While the application is running, I need to detect the executable name of the active window. On Winodws XP the following code worked fine (getting the process filename from the active window handle). On x64 it reports the name of only the 32bit processes (returning garbage for the others, probably because I'm not checking the data returned). I'm passing the handle of the active window that I got with the GetForegroundWindow API.</p> <pre><code>public static string GetProcessPathFromWindowHandle(IntPtr hWnd) { string filename = string.Empty; uint pid=0; Unmanaged.GetWindowThreadProcessId(hWnd, out pid); //error in Win64: returns strange characters for Win64 files const int nChars = 1024; StringBuilder filenameBuffer = new StringBuilder(nChars); IntPtr hProcess = Unmanaged.OpenProcess(1040, 0, pid); Unmanaged.GetModuleFileNameEx(hProcess, IntPtr.Zero, filenameBuffer, nChars); Unmanaged.CloseHandle(hProcess); filename = filenameBuffer.ToString(); //Get the name of the Windows int length = Unmanaged.GetWindowTextLength(hWnd); StringBuilder sb = new StringBuilder(length + 1); Unmanaged.GetWindowText(hWnd, sb, sb.Capacity); Logger.Main.LogMessage("Window Title is: " + sb); Logger.Main.LogMessage("Process filename is: " + filename); return filename; } </code></pre> <p>Can I get that piece of information form a 32bit process in a 64bit environment? Thanks. Andrea</p>