<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {mso-style-priority:99;
        mso-style-link:"Balloon Text Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif";
        mso-fareast-language:EN-US;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.BalloonTextChar
        {mso-style-name:"Balloon Text Char";
        mso-style-priority:99;
        mso-style-link:"Balloon Text";
        font-family:"Tahoma","sans-serif";}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-GB link=blue vlink=purple><div class=WordSection1><p class=MsoNormal>Hi<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>I am trying to write an XML file where the filename is created based on a timestamp. Simplified version below. This won&#8217;t compile &#8211; I get this error in doWrite2 <o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal><i>filepathtest.hs|24 col 17 error| Couldn't match expected type `system-filepath-0.4.7:Filesystem.Path.Internal.FilePath'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></i></p><p class=MsoNormal><i>||&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; with actual type `String'<o:p></o:p></i></p><p class=MsoNormal><i>|| In the second argument of `writeFile', namely `t1'<o:p></o:p></i></p><p class=MsoNormal><i>|| In a stmt of a 'do' block: writeFile def t1 doc<o:p></o:p></i></p><p class=MsoNormal><i>|| In the expression:<o:p></o:p></i></p><p class=MsoNormal><i>||&nbsp;&nbsp; do { t1 &lt;- tsString;<o:p></o:p></i></p><p class=MsoNormal><i>||&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; writeFile def t1 doc }<o:p></o:p></i></p><p class=MsoNormal><i><o:p>&nbsp;</o:p></i></p><p class=MsoNormal>Somehow the String &#8220;text.xml&#8221; in doWrite1 is converted into a FilePath, but not the String t1 in doWrite2. What am I doing wrong?<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>&nbsp; {-# LANGUAGE OverloadedStrings #-}<o:p></o:p></p><p class=MsoNormal>&nbsp; module Filepathtest&nbsp; where<o:p></o:p></p><p class=MsoNormal>&nbsp; <o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;import Text.XML<o:p></o:p></p><p class=MsoNormal>&nbsp; import Data.Time.Clock.POSIX (utcTimeToPOSIXSeconds)<o:p></o:p></p><p class=MsoNormal>&nbsp; import Data.Time.Clock&nbsp; (getCurrentTime)<o:p></o:p></p><p class=MsoNormal>&nbsp; import Prelude hiding (writeFile, FilePath)<o:p></o:p></p><p class=MsoNormal>&nbsp; &nbsp;&nbsp;<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;tsString :: IO String<o:p></o:p></p><p class=MsoNormal>&nbsp; tsString = do<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; x &lt;- getCurrentTime<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; let x' = show $ floor $ utcTimeToPOSIXSeconds x<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; return x'<o:p></o:p></p><p class=MsoNormal>&nbsp; <o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;doWrite1 :: Document -&gt; IO ()<o:p></o:p></p><p class=MsoNormal>&nbsp; doWrite1 doc =<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; writeFile def &quot;test1.xml&quot; doc<o:p></o:p></p><p class=MsoNormal>&nbsp; <o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;doWrite2 :: Document -&gt; IO ()<o:p></o:p></p><p class=MsoNormal>&nbsp; doWrite2 doc = do<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; t1 &lt;- tsString<o:p></o:p></p><p class=MsoNormal>&nbsp;&nbsp;&nbsp; writeFile def t1 doc<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p></div></body></html>