folder

biztalk administration console crash when browsing for folder

Hi, we recently upgraded our biztalk server 2006R2 to SP1. The problem is that we're having some small issues now, for example the administration console crashes when I browse for a folder if I want to make a file send/receive port. Any idea what might cause this problem? i'm having no problems when I browse for a folder with our nor...

Simple file and folder view in C#

Hey there! I have seen an application recently what had two simple controls (a treeView and a detailed ListView) what were used for listing directories and files. I know how to do this, but it had another nice feature other than listing files: it loaded info from the system shell, like icons of folders, file specifications (file types m...

Build a custom folder in cocoa

I want to build an application that basicly acts as an desktop folder but with extended capabilities. But i have no idea how to start. If anyone has done eomethibg like this i would be really glad for any kind of hint. ...

Are Extended ASCII characters safe for filenames & folders?

My C# project saves files and creates folders with the extended ASCII character "²" (superscript 2). Is this safe to work with internationally? Is this something that could cause any issues with the .NET libraries or Windows functions? ...

Simulating remote environment?

I'm building a .NET MVC application which will be deployed on a Windows 2003 server. The server has a folder @ c:\Website\Files which needs to be written to from the application. How do I cope with this in my development environment so that the MSI setup file, which I will compile, will work correctly when deployed? p.s. the folder is ...

Wix: change installation folder tree

Hi, I've a set of folder to be installed in different layouts for different users. For examle: User1: AppFolder Dir1 Dir2 Dir3 User2: AppFolder Bin Dir1 Dir2 Lib Dir3 How it's possible? ...

WPF Localization file folder

I have a WPF application with localization. In my project file (.csproj) I have added a string: <UICulture>en-US</UICulture> Now the problem is - when I compile the default localization (en-US folder) is always put to the root of $(OutDir) of the project. Question: how do I move this directory into a subfolder (say, $(OutDir)localize...

In ASP, is it possible to list files from a shortcut?

I created a shortcut, in Windows, to a folder. I then placed this shortcut in another place. Using ASP, is it possible to list the files in the folder via the shortcut? All folders, files, links, etc. are on the same drive. ...

How can I programatically force Windows XP to display thumbnails for a folder?

I have an application that calls ShellExecute with a folder path. This brings up the folder in explorer. However, I want to make sure that the folder is set to display the contents in thumbnail view. How can I ensure this happens? ...

Mercurial/.hgignore - How do I ignore everything but the contents of a folder?

I have a NetBeans project and the Mercurial repository is in the project root. I would like it to ignore everything except the contents of the "src" and "test" folders, and .hgignore itself. I'm not familiar with regular expressions and can't come up with one that will do that. The ones I tried: (?!src/.*) (?!test/.*) (?!^.hgignore)...

Finding files with bash and copy to another location and reducing depth of folders

I'm trying to recover a mates hard drive, there is no structure what so ever so music and images are everywhere but in named folders sometimes >5 folders deep, I've managed to write a one-liner that finds the files and copies them to a mounted drive but it preserves the file structure completely. What I'm after is a bit of code that sear...

Getting file updates in folders with no permission.

I've been working on a program to monitor a network folder to find out which spreadsheets our company uses are the most popular. I'm using the FileSystemWatcher class in C# to do the monitoring. I've noticed I'm getting updates to files that are in folders that my user does not have permission to browse. I understand that my software is ...

Create and set permissions on new home folder programmatically

I have created an app to standardize user creation for our AD domain. Now I would like to be able to create, share and set permissions on the folder. I know how to create a remote folder, but I am unclear on the best way to go about sharing and setting permissions in VB08. Thanks in advance, Christopher ...

MonoDevelop Exclude a folder from SVN

Is there a way to tell a MonoDevelop project to exclude from source control a folder in the project. The folder has large SQLite databases I don't need/want published. ...

Rubyzip - possible to set extraction folder?

Hi. My problem is that I need to set the root extraction folder for a zip-file I`m generating by using Rubyzip. The zip-file will be opened in MS windows as an zelf-extractable. Is this option available in Rubyzip? Or is this a value that is stored in the windows registry and used by the integrated zip-functionality in windows? ~ Tord ...

zipping a folder/file using qt

Hello every one,i would like to know if we have any class in qt which can zip a folder or file.i used qprocess to compress,it got compressed but i am unable to uncompress it using normal zip tool.can anyone let me know how can we compress a folder/file using qt api classes ...

Pack URI how to get contents of folder

I have the following directory structure (all files as resources): Project \Maps +map.xml ... +something.xml To get to every file I use following syntax: "pack://application:,,,/Maps/map.xml" My question is - how to get contents of pack://application:,,,/Maps/ as FileInfo [] or List. ...

Java access Shellfolder

Hello Guys I am trying to access an Shellfolder like: "Shell:::{35786D3C-B075-49b9-88DD-029876E11C01}" via Java on a Windows PC ... but I havn't found a way to do so up to now. Is this generally possible with Java? Recently I uncovered the sun.awt class "ShellFolder"... Does this class provide the abilitiy to access such an folder? t...

Batch file to map a drive when the folder name contains spaces

I am trying to map a drive using a batch file. I have tried: net use m: \\Server01\myfolder /USER:mynetwork\Administrator "Mypassword" /persistent:yes It works fine. The problem comes when I try to map a folder with spaces on its name: net use m: \\Server01\my folder /USER:mynetwork\Administrator "Mypassword" /persistent:yes I have...

MOSS - Create folder with read only..

The following works. How do I add ReadOnly = true to this newly created folder (Item. Folder. ReadOnly) SPListItem myItem = properties.ListItem; SPList documentLibrary = myItem.ParentList; SPListItem folder = documentLibrary.Folders.Add(documentLibrary .RootFolder.ServerRelativeUrl, SPFileSystemObjectType.Folder, "My New Folder"); fol...