My requirement is to create shortcut of one folder or document into another folder. For example lets say I have a folder called A and in this folder I have many documents. Now I want to create shortcut of this folder into another folder name B. So basically I don't want to store same content in folder B, it's contains link or reference of folder A. Whatever change made in folder A, it has to be reflected to folder B also. So any one please help me how to do it alfresco using apache chemistry.
Related
I'am newbie in next js, I trying to create project like Share point that i can create folders, inside a folder are able to create new folder or upload files and inside {this} folder are again able to create folder and upload files.
I can't find another similar scenario online
After clicking the folder (<a></a>) query new params in the url using router.push() without refreshing the page.
from share point
I wanted to Copy just a single folder at a time from one location to another
Currently i hv to First go to the rename copy the name and come back to current location and create a new folder and paste the name
Just like TreeCopy Which copies folder complete structure
is there anything through which i can speed up this process and just generate a single folder from a 3000+ Collection of Folders
How can i copy just one folder from one location to another without copying anything inside it neither content nor sub folders.
if you know the way let me know.
I know how hectic that work can get, but luckily there's an easy way around this.
Type in the following command in command prompt(cmd).
I think you need to have administrator rights for this.
xcopy “c:\users\cdwyer\documents\OriginalFolder” “c:\users\cdwyer\documents\NewFolder” /T /E
The command is xcopy and it takes two parameters, the path of original folder and the path of new folder you want to create with the original folder structure.
/T is just another parameter that ensures to only copy the folder structure, not the files.
/E is another parameter you can include to make sure empty folders are created.
If you have any other queries, just go through this website.
https://camerondwyer.com/2013/07/05/how-to-copy-an-entire-folder-structure-without-copying-the-files-tip-for-starting-the-new-financial-year/
I have created one project in yii2-basic. In that I had done the some changes in the bootstrap.css in the web/assets/dir/.
Now I need to deploy this into another directory. I copied that project into another directory. Then I run in the browser. The changes I had done in the files are not affecting to the site. Then it refers to the another file for css.
I can't find the correct way to do this. Can anyone show me the correct way to do this?
for changing the css you should change the original in the
.\basic\vendor\bower\bootstrap\dist\css
then minimize it
and then in the dir web\asset you must delete the dir where is place the bootstrap (bootstrap-min.css i guess) files
There isn't a fixed name for this asset dir, you must find yourself the correspondent dir containing all the bootstrap part (css, js , fonts). and then remove (cancel) this dir.
Removing this dir when you accessing to the app the dir is newly recreate (normally with another asset id name).
If you don't do this when you copy a project in a new dir, at the first access the asset directory are newly create and the code you have change is not reached by application.
When I make a new project with xc4 I don't want it to create a folder with the same name as the project. I want the source files associated with a project template to get copied into several other folders that sit next to the project.
In the TemplateInfo.plist, I can specify which files to copy through the Definitions and Nodes arrays. In the Definitions, if I make the name ../Example.cpp then it will copy the file into the directory with the project rather than into the folder that has the project's name, which is what I want. But, if i delete that empty folder then xcode can no longer find any files because all files had to be specified relative to the auto-created folder.
Does anyone know how to get around this? Is there some way to specify which folder project files should be relative to? Or perhaps some other way to specify relative paths for files in a project template?
I have all the files for the deployment listed below :
-BIN
-CSS
-IMAGES
default.aspx
PrecompiledApp.xml
Web.xml
The above files can be copy pasted in the webapps folder and default.aspx could be run from the browser.
i want to create a solution sln file from this. How to create a solution file?
A solution is merely a container of projects. If you create a project containing these files, the solution file will be created automatically in the same directory (unless you specify otherwise).
File -> New Project
Expand Other Project Types, Select
Visual Studio Solutions
Under Templates, ensure you have
selected Blank Solution
Enter a name and a location for the
solution and click OK
File -> Add -> Existing Web Site
Select the folder that contains your
website and click Open
It looks as though you are creating a web site. I've never been able to create a solution with just a website in it (a web application is a different beast however). However, I have found a workaround, although it's a little cludgy. Create a new class library project (any project type will do really). This will create the project file. Then File -> Add -> Exisiting Web Site. Point to your existing web site and add it. This will create the solution file as you now have two items. You can now delete the first project that you created. This will leave you with a solution file with one web site in it.