Is it possible to update the location of your files?

I currently have an issue because i imported my books to Digital Edition 2.0 from a bunch of different folders and i have since put alot of highlights in my different books.
I would very much like to move all my books to a common folder, but it seems i would have to reimport all my files anew if i do this - loosing all my highlights in the process.
Am i missing something here or is it really impossible to do some kind of workaround?

If you are really determined, you could probably do it by either/both (1) editing the manifest.xml file in your My Digital Editions directory, (2) moving files in the Annotations subdirectory of your My Digital Editions directory.
I would certainly make a complete backup of the  My Digital Editions directoty first before trying any such tricks.

Similar Messages

  • I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    Hi vindog60,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you get an installation error with iTunes on your Windows PC, please follow the steps in the article linked to below.
    Issues installing iTunes for Windows - Apple Support
    Cheers,
    Alex H.

  • Is it possible to update the comments field once receiving is done

    Hi All,
    Can anyone of You help on this.
    We have done the receiving against one PO. The material is receipt and delivered in the Inventory.
    User has enter in-correct details in the comment field (both at header and line level) during receiving.
    Now we need to update the comments section with some new commnets.
    Apart from backend/ database update, is it possible to update the comments section since receiving is already done. Please suggest some alternate option.
    Thanks
    Sujay

    Hi Sujay,
    You won't be able to update the comments once received.
    Alternate approach: Perform correction transactions to reverse all the receiving transactions and re-receive again entering correct comments.
    Thanks,
    PS.

  • Hi, my Iphone was stolen 2 days ago, I have the voxer installed on it, is it possible to find the location of my phone?

    Hi, my Iphone was stolen 2 days ago, I have the voxer installed on it, is it possible to find the location of my phone?

    What is the "Voxer"?
    If you set up the find my iphone feature on the iphone itself and it is on and it has not been restored, then you may be able to locate using icloud.com.
    Otherwise, it cannot be tracked.

  • HT4236 Is it possible to change the location of the ipod Photo Cache?

    Is it possible to change the location of the ipod Photo Cache?  At the moment it is created in my photos folder in win 8 which saves to my SkyDrive so I have duplicates and wasted space on the drive.
    I would like to change the location to a location which is not saveed in the cloud.
    thanks

    The logo is in it's own table cell - so css will not work (can't change the order of table columns using css). You could possibly replace the logo image on the server with a single white pixel (create a custom skin if you want), then add a new background image to the table (class is HeaderTopBar) aligned right and no repeat using CSS. You would need to pad out that right side somehow to make it align (the last cell has class HeaderPageStatus and contains the status image).
    Regards,
    Robert

  • Possible to "Update" the SDK rather than download entire 1+ GB file?

    Is it possible to "Update" the SDK from an older one rather than download the entire SDK again?
    Thanks

    Short answer: no.
    You would probably have to replace the individual files in the way that you want.
    Just leave the download on overnight if your connection is that slow.

  • Updating the location of Dashboard?

    Hey guys i just purchased a macbook and can not figure out how to update the location on dashboard. Can someone kindly help me out? Currently its displaying a city in california.
    Thanks,
    Stan

    Is this a weather widget?
    For most widgets, you click the LITLE icon on the widget that look like a i
    The widget will than "flip" and show the settings.
    -Mike

  • How to read and update the value of property file

    Hi,
    I am not able read the values from property file.
    Please tell me how to read and update the values from property file using Properties class
    This is my property file : - Config.properties its located in D:\newfolder
    Values
    SMTP = localhost
    Now i need to change the value of the SMTP
    New value :
    SMTP =10.60.1.9
    Pls Help me
    Thanks
    Merlin Rosina,

    Post a small (<1 page) example program that forum members can copy and run that demonstrates your problem.

  • Output error:the name of the package "greet" does not reflect the location of this file...

    output error: The name of package 'greet' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. C:\Documents and Settings\Igal\My Documents\meiran\greet\Greeter.as
    I keep on recieving this output error although my source path is set to C:\Documents and Settings\Igal\My Documents\meiran\greet.
    any suggestions why this happens?

    The classpaths you define in your Flash software tell the compiler where to look when it needs to find a class.  According to your as file, the very top line indicates the Greeter.as file should be at a location specified by the path...
    one-of-your-classpaths\com\example\quickstart\
    So if one of your classpaths is:  C:\Documents and Settings\Igal\My Documents\meiran\greet\
    and you placed the file in the greet folder, then in your AS document you should not have the "com\example\quickstart" and your import statement in the fla should not be using that (should just be... import Greeter;)

  • How to update the value in xml file using transformer after setNodeValue

    Hi,
    This is my code
    I want to set update the values in xml file using transformer..
    Any one can help me
    This is my Xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <place>
    <name>chennai</name>
    </place>
    Jsp Page
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="javax.xml.parsers.DocumentBuilderFactory,
    javax.xml.parsers.DocumentBuilder,org.w3c.dom.*,org.w3c.dom.Element"
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <% String str="";
    String str1="";
    try
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse("http://localhost:8084/XmlApplication1/sss.xml");
    out.println("Before change");
    NodeList n11 = doc.getElementsByTagName("name");
    Node n22= n11.item(0).getFirstChild();
    str1 = n22.getNodeValue();
    out.println(str1);
    out.println("After change");
    String name = "Banglore";
    NodeList nlst = doc.getElementsByTagName("name");
    Node node= nlst.item(0).getFirstChild();
    node.setNodeValue(name);
    NodeList n1 = doc.getElementsByTagName("name");
    Node n2= n1.item(0).getFirstChild();
    str = n2.getNodeValue();
    out.println(str);
    catch(Exception e)
    out.println(e) ;
    %>
    <h1><%=str%></h1>
    <%--
    This example uses JSTL, uncomment the taglib directive above.
    To test, display the page like this: index.jsp?sayHello=true&name=Murphy
    --%>
    <%--
    <c:if test="${param.sayHello}">
    <!-- Let's welcome the user ${param.name} -->
    Hello ${param.name}!
    </c:if>
    --%>
    </body>
    </html>

    hi check this exit...
    IWO10012

  • Where is the location of tablespace file and control file

    Hi, all
    where is the location of tablespace file and control file? tks

    For DataFiles, query DBA_DATA_FILES or V$DATAFILE
    For TempFiles, query DBA_TEMP_FILES or V$TEMPFILE
    For Online Redo Logs, query v$LOGFILE
    For Archived Redo Logs, query v$ARCHIVED_LOG
    for Controlfiles, query v$CONTROLFILE
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • [svn] 1363: 1) update the qa-regress build file to use 1.5 source level

    Revision: 1363
    Author: [email protected]
    Date: 2008-04-23 14:02:19 -0700 (Wed, 23 Apr 2008)
    Log Message:
    1) update the qa-regress build file to use 1.5 source level
    2) remove the duplicate MBeanServerGateway destination
    3) remove a comment from the mxml
    Modified Paths:
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/build.xml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/httpservice/MultiHe aderTest.mxml

    Hi,
    If you remove the $ and braces (as shown below) it will work.
    <data-source-aliases>
    <aliases>
    <data-source-name>MYDS</data-source-name>
    <alias>BRANCH50DS</alias>
    </aliases>
    </data-source-aliases>
    Regards,
    S.Divakar

  • How to Update the driver of your graphics card

    When I open Photoshop CC, I get this message:
    "3D features require a minimum of 512MB of vRAM. Photoshop has detected less than that on your system. Updating the driver of your graphics card may resolve the issue."
    I went to the website they recommended but found nothing about this. How can I determine if this is the problem? How do I find out how much vRAM I have? How do I update the driver of my graphics card?

    You cannot upgrade the GPU except by buying a newer model with a better GPU. Normally, with shared RAM the GPU will have a maximum of 384 MBs of VRAM with 4 GBs of installed RAM. That will increase by about 128 MBs per 2 GBs of additional installed RAM.

  • Is it possible to change the location of the Oracle logo

    I need to change the location of the Oracle logo in home page from left to right side. We tried to edit in common .css and failed. Please help.

    The logo is in it's own table cell - so css will not work (can't change the order of table columns using css). You could possibly replace the logo image on the server with a single white pixel (create a custom skin if you want), then add a new background image to the table (class is HeaderTopBar) aligned right and no repeat using CSS. You would need to pad out that right side somehow to make it align (the last cell has class HeaderPageStatus and contains the status image).
    Regards,
    Robert

  • Windows 8.1 Client Side Caching - Is it possible to specify the location of the offline file cache?

    Hi,
    Is there any approved way to change the location of the offline files cache in Windows 8.1?  I'm asking before moving client systems from Windows 7 where a registry change was required - is this still the way to go?
    I believe that if the default user-profile directory is moved, this causes problems for updates to Windows 8/8.1 now, is the same true if you move CSC?
    Just a bit of background.  The systems I want to do this for have smallish SSD boot drives with a higher capacity spinning disk.  The machines are members of a domain with Folder Redirection setup.  I could setup group policies to disable
    caching of some of the larger directories or even disable CSC entirely on the machines which have an SSD boot drive, but would prefer not to do so.
    Thanks in advance.

    Hi,
    According to your descryption, In windows 7, the tool is migwiz.exe, namely the Windows Easy Transfer, you can modify the registry in the way listed in the post below:
    http://social.technet.microsoft.com/Forums/en-US/bbf5890c-b3d7-4b38-83d8-d9a5e025fb2b/how-to-move-clientside-caching-to-a-new-location?forum=w7itproinstall
    In Windows 8, Windows easy transfer is also a built in tool to migrate user profiles and user settings, but as for the offline transfer, I suggest to use the USMT for your situation.
    Because with USMT you can specify the folder that you want to migrate the files to, by using an offline.xml you can set the path just as the sample listed below:
    <offline>
         <winDir>
              <path>C:\Windows</path>
              <path>D:\Windows</path>
              <path>E:\</path>
         </winDir>
         <failOnMultipleWinDir>1</failOnMultipleWinDir>
    </offline>
    You can also refer t othe details at:
    http://technet.microsoft.com/en-us/library/hh824880.aspx
    Regards
    Wade Liu
    TechNet Community Support

Maybe you are looking for

  • Error while migrating BLOB data

    Hi , I am migrating the data from oracle to oracle and both soruce and target tables have BLOB type field. I am getting error when I am executing the interface with these blob fields. But My interface is successfull if I am not maaping this blob file

  • Check in Function if optional table is existing

    Dear all I have a function module where I have a table as optional parameter. No I should be able to check if this table is existing or not. How can this be done? I tried several things like try + catch but nothing worked. All lead in an exception wh

  • RE: Ocx / ActiveX

    Patrice, We use several Controls in our systems, I am not going to say it was always easy making them work but they all work fine. We have grid controls, calendars, IE 4.0, home grown controls, etc. Thanks, Russ Engelhardt IT Systems Consultant ITCO

  • Action for generic scanning

    I'm trying to automate the process of scanning a bunch old public domain magazines.  When I try to create an Action to automate the process of the following mouse clicks: File > Import > WIA Support Click START button on WIA Support screen Choose whi

  • VS 2015 CTP VNext - NuGet not installing to packages directory

    During a package install with NuGet it will add a reference to the package within project.json, create a reference within ASP.NET 5.0 Reference view but with an alert icon. The alert is due to the package missing from \.kpm\packages. I've had to manu