Tagged Questions
The cd tag has no wiki summary.
13
votes
12answers
812 views
Make a CD run once
We're doing an "Amazing Race" kind of event, and thought it would be cool to have CDs that could only play once... like a "this message will self destruct in 5 seconds..."
Any thoughts on how to do ...
11
votes
2answers
467 views
C# How to tell if DVD drive tray is open?
I have a DVD reading and burning app in C#. I want to be able to detect the difference between an empty drive (no disk) and an open drive.
Edit: After some more googling, I think a better problem ...
9
votes
1answer
352 views
Is there a hook in Bash to find out when the cwd changes?
I am usually using zsh, which provides the chpwd() hook. That is: If the cwd is changed by the cd builtin, zsh automatically calls the method chpwd() if it exists. This allows to set up variables and ...
7
votes
4answers
1k views
How to run 'cd' in shell script and stay there after script finishes?
I used 'change directory' in my shell script (bash)
#!/bin/bash
alias mycd='cd some_place'
mycd
pwd
pwd prints some_place correctly, but after the script finished my current working directory ...
6
votes
7answers
378 views
A bash one-liner to change into the directory where some file is located
I often want to change to the directory where a particular executable is located. So I'd like something like
cd `which python`
to change into the directory where the python command is installed. ...
5
votes
1answer
225 views
Write to a CD from Delphi [closed]
Possible Duplicate:
How can I burn CD/DVD from delphi2007 win32
I am looking for a free and open source component or source code to write to a CD from Delphi 2007. Do you know any?
5
votes
3answers
122 views
Will jQuery work on a CD distribuited “website”?
Sadly I have to make a website (so to speak website) that can be placed on a CD.
My question is, can I use JavaScript and jQuery?
Some of the people who get the CD might have IE6 on Win XP installed.
...
5
votes
3answers
228 views
Identifying CDs
I'd like to be able to determine what music album CD is in a CD drive. For example, if someone claims that the CD in their drive is Eminem - The Eminem Show, I would like to be able to verify that the ...
5
votes
3answers
941 views
How do I programmatically create a bootable CD?
I'm using a barebones tutorial as the basis for an OS I'm working on, and it seems to be an older tutorial: it has be compiling the kernel down to a floppy image, and then loading it with GRUB.
...
4
votes
1answer
1k views
How to use “cd” command using java runtime?
I've created a standalone java application in which I'm trying to change the directory using the "cd" command in ubuntu 10.04 terminal. I've used the following code.
String[] command = new ...
3
votes
7answers
682 views
PHP system(“cd \”); not working
i used to use system commands through a php file ..cd \ was working then suddenly after a few tries it stopped :| no matter what i do
<?php
$command = array("cd \","dir");
$result = ...
2
votes
2answers
141 views
Unable to run BASH script in current environment multiple times
I have a bash script that I use to move from source to bin directories from anywhere I currently am (I call this script, 'teleport'). Since it basically is just a glorified 'cd' command, I have to run ...
2
votes
2answers
137 views
CD to Auto-Open Webpage
A friend of mine wants to hand out CDs (yes, compact disks) as invitations for a party. When someone puts the CD into their computer, it should automatically load a webpage used for RSVPing to the ...
2
votes
4answers
230 views
Linux: Run a binary in a script
i want to run a program via script.
normally i type ./program in the shell and the program starts.
my script looks like this:
#!/bin/sh
cd /home/user/path_to_the_program/
sh program
it fails, i ...
2
votes
1answer
236 views
Java library to burn & print light scribe cd
Do you know if exists a good Java
library to burn & print light scribe cd, if possible free or yet best open source
Have you already used some of them? It's possible to print either text and ...
2
votes
2answers
88 views
Check which key to hit to boot from USB or CD?
I need to check which key the user must hit to boot their PC from a USB key or a CD.
Does it depend on the BIOS maker, or on the maker/model of the motherboard?
I was told about the nice, ...
2
votes
1answer
29 views
VB Style CD Embedding with .Net Framework
In the old VB6 days it was possible to embed the runtime onto a cd and run the app automatically when the CD was popped in without having to run through an installation.
Is there anything available ...
2
votes
4answers
363 views
Execute a bash function upon entering a directory
I'd like to execute a particular bash function when I enter a new directory. Somethink like:
alias cd="cd $@ && myfunction"
$@ doesn't work there, and adding a backslash doesn't help. I'm ...
2
votes
2answers
688 views
How to eject CD using WMI and Python?
Using Windows' WMI library, how can I eject CD rom mounted in a specific CD/DVD drive?
I am asking for sources from WMI docs or examples since I am using wmi.py library on Python.
It would be great ...
2
votes
3answers
426 views
How to read CD audio data in Windows?
What is the Microsoft-approved way to extract the raw audio data from an audio CD? I'm hoping to do this with C++ or C.
It's ironic because in XP/Vista/7, there is the IMAPI (Image Mastering API) for ...
2
votes
2answers
681 views
2
votes
6answers
2k views
How to make an html page open automatically on a CD/DVD
I need to include an html page (table of contents) on a CD/DVD. I'd like the html page to open automatically when the user puts the CD/DVD in their machine. Is there a way to do this (the MSDN cds ...
2
votes
1answer
934 views
How do I specify a publisher for the setup.exe when a setup CD is autoplayed in Windows
I have a setup CD to install a visual studio C++ application I made. The AutoPlay popup shows "Publisher not specified" for running setup.exe. How do I specify a publisher?
2
votes
1answer
285 views
cd doesn't work when redirecting output?
Here's a puzzler: can anyone explain why cd fails when the output is redirected to a pipe?
E.g.:
james@machine:~$ cd /tmp # fine, no problem
james@machine:~$ cd /tmp | grep ...
2
votes
1answer
630 views
Accessing CD/DVD drive for backup from Adobe AIR application
Is it possible to burn a CD/DVD from an Adobe AIR app?
How?
I want my application to take some backup on the CD/DVD.
Any other options?
2
votes
2answers
286 views
2
votes
2answers
259 views
Creating multi-platform CDs for software distribution
This is not strictly programming related, but I hope still relevant.
I'm working on a project which is written in Java and intended for use on PCs and Macs. It will be distributed on CD (and perhaps ...
1
vote
2answers
79 views
Importing Projects and Building workspace from batch file
I have this batch file
@ECHO OFF
ECHO Please Enter Path of the View, you want to update in double quotes.
SET /P variable=
SET ECLIPSE=C:\Users\gdeep\Desktop\TED-4.3.0.20110512190809.lnk
SET ...
1
vote
1answer
145 views
why calling cd shell command through system() or execvp() from a child process won't work?
I understand that i am supposed to use chdir() but I just need an explanation as to why calling cd shell command through system or execvp() from a child process would not work? Thanks!!
1
vote
3answers
290 views
does cd command in a shell script load the rvmrc inside the destination directory?
when you have something like..
given inside projectx an .rvmrc file specifying ruby 1.9.2 and having two rubies on my system (ree-1.8.7 and ruby1.9.2)
#!/bin/bash
cd applications/projectx
which ...
1
vote
2answers
102 views
Alias “cd” so that it will automatically autocomplete and attempt to move to directory
I'm wondering if anyone can do this. Say I have this folder structure:
Folder A
Folder Apple
Folder Orange
If I am currently in Folder A, I'd like it so that if I type "cd Ap" and hit ...
1
vote
1answer
38 views
Can I create an AIR app which will only run with the provided CD?
I'm looking to make an AIR application. However, unlike the normal distro, I want to sell these on a CD. I want the AIR app to only be able to be run when the CD is in the CD drive (I don't care ...
1
vote
0answers
43 views
OS X icon on insertion of CD
I am trying to create the following behavior:
Insert a CD on Mac OS X (Leopard and up) machine.
Upon reading of CD, display a custom icon for the inserted CD
Drag in an application from CD to ...
1
vote
1answer
193 views
Can we programatically protect CD/DVD by password?
I wrote a program to burn CD in C#, but now I want to protect my CD by a password. Is it possible?
1
vote
1answer
47 views
Changing to a directory named -
I have a script that traverses the directory tree using pushd and popd. It is choking on a directory named -. I have tried:
pushd -- -
But the dash is still interpreted as an option (and the ...
1
vote
2answers
263 views
cd inside a windows cmd, how to get back to original directory?
I am cd ing to a directory inside a windows .cmd file, but this file has various return points,
how do I make return to the original directory without saving the original directory and returning to ...
1
vote
2answers
101 views
Where do I find the “cd” command? [closed]
I need to know to know the full path of the command "cd" in ubuntu 10.04. Can anyone please help me find it. For example the full path of the command "dir" is "File System/bin/dir".
-Thanks in advance
...
1
vote
2answers
95 views
Library for managing paths/URLs
Is there any library in C or C++ that helps with managing paths or URLs?
Or maybe functions from standard library from one of these languages
Example:
Imagine following API:
class Path {
...
1
vote
1answer
100 views
Watching CD/DVD burning files on Windows
I just want to log all files wrote to CD-ROM/DVD disks, and the source file (file which it's copied from) - and I cannot depend anyway from the burnning software.
It's to know every file copied from ...
1
vote
1answer
151 views
Online App to Rip Discs to ISO/DMG
I've been thinking a lot lately about how cool it would be to have a website that allows a user to insert a disc into their drive and click a button to begin a ripping process. After the rip is ...
1
vote
2answers
87 views
deploy website to cd - paths
what's the best way of porting a static HTML website to a CDROM, to allow users to insert the disk, copy the files off, and then run the site "offline", as it were.
what sort of path structure should ...
1
vote
5answers
459 views
How do I change my current directory from a python script?
I'm trying to implement my own version of the 'cd' command that presents the user with a list of hard-coded directories to choose from, and the user has to enter a number corresponding to an entry in ...
1
vote
2answers
828 views
how to run xampp on cd?
I have a product catalog using apache, php and mysql. I need to put it on a CD, so it can be run from it direclty. What possibilities are there?
1
vote
1answer
536 views
How to create an Audio CD using C# or Java
I'm looking for an API that would allow me to create an audio CD from within a C# application. The CDs are to be created and closed in the same session (no rewrite required). Basically, my application ...
1
vote
1answer
104 views
What code libraries are there to rip audio CDs that are suitable for commerical use?
What code libraries are there to rip audio CDs (e.g. DAE, Digital Audio Extraction)? Must be suitable for commerical use (e.g., no GPL) Preferably free. Linux or FreeBSD or Windows. Most interested ...
0
votes
0answers
54 views
C# code for Ripping CD Audio
I've spent hours trawling the net looking for a good sample piece of code that shows how to rip CD Audio to either WAV or MP3 format. I have a load of CD's and want them indexed in an application I'm ...
0
votes
0answers
27 views
How to use SCSI READ CD command to read audio sector?
Since READ CD command requires pass logical block address, and logical block size is 2048 bytes, while raw sector size is 2352 bytes. Map of logical block address to real sector is
handled by the ...
0
votes
4answers
80 views
How to set a path in tcl like with cd in batch files?
I've been using Tcl language for a few days only, but I'm used to programming in other languages too; however, I can't find any reference anywhere as to how I could set the current directory or path ...
0
votes
0answers
43 views
How to autorun a piece of software from a CD/DVD on Windows 7?
I want my software to run automatically from a CD/DVD with no user interaction whenever the user puts the CD/DVD into the drive. As far as I know autorun should still work with Windows 7, they just ...
0
votes
1answer
88 views
Change directory permanently in a bash script
I'm trying to change directory in a called bash script.
For this I tried to use cd command. But after the script ends current directory is restoring to position before the script call.
I also tried ...